Module:Sort list: Difference between revisions
Appearance
m Pppery moved page Module:Sort to Module:Sort list without leaving a redirect: Make module name match template name |
MusikBot II (talk | contribs) m Protected "Module:Sort list": High-risk template or module (more info) ([Edit=Require autoconfirmed or confirmed access] (indefinite)) |
(No difference)
|
Latest revision as of 17:59, 11 August 2021
A sorting module, intended to be used with {{sort list}}.
See also
local p = {}
function p.asc(frame)
items = splitLine( frame.args[1] );
table.sort( items );
return table.concat( items, "\n" );
end
function p.desc(frame)
items = splitLine( frame.args[1] );
table.sort( items, function (a, b) return a > b end );
return table.concat( items, "\n" );
end
function splitLine( text )
return mw.text.split( text, "\n", true );
end
return p