HyperNervie
Created page with "local p = {} -- Call this in modules function p.error(message, tagname) -- message shouldn't be nil nor empty if message == nil then error("no message specified", 2) else message = mw.text.trim(tostring(message)) if message == "" then error("empty message", 2) end end if type(tagname) ~= "string" then tagname = "strong" else tagname = mw.ustring.lower(tagname) if tagname ~= "spa..."