Permanently protected module

Module:Normalized pagename

From Yugipedia
Jump to: navigation, search

-- <pre>
--
-- implements {{Normalized pagename}}
--
local p = {}
function p.main( frame )
    return mw.text.decode( frame:getParent().args[1] or mw.title.getCurrentTitle().prefixedText )
end
return p
-- </pre>