Jump to content

Module:SortName

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Bility (talk | contribs) at 17:28, 9 April 2013 (page title name sorting). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)

local p = {}
 
function p.sortname()
    local teststring = '    string with spaces       '
    teststring = mw.text.trim( teststring )
    return mw.title.text, teststring
end
 
return p