Module:Navbar: Difference between revisions

Jump to navigation Jump to search
Content added Content deleted
(If the documentation is accurate, this will use the namespace part of pageName first and fallback to Template if one isn't present, which is what we want.)
(match ought to be marginally faster)
Line 4: Line 4:


function trim(s)
function trim(s)
return (mw.ustring.gsub(s, "^%s*(.-)%s*$", "%1"))
return mw.ustring.match( s, "^%s*(.-)%s*$" )
end
end