Admin
Created page with "local p = {} local letterToNs = { Q = 0, P = 120, L = 146, E = 640, } local function strafter(arg, pre) local length = mw.ustring.len(pre) if mw.ustring.sub(arg, 1, length) == pre then return mw.ustring.sub(arg, length + 1) end return nil end local function booleanOutput(val) local map = {[true] = '1', [false] = ''} return map[val] end local function namespaceIdFromEntityId(entityId) if not mw.wikibase.isValidEntityId(entityId) then return nil e..."