Module:PrettyList

From eCatalog Manager Wiki
Revision as of 17:56, 30 August 2016 by Admin (talk | contribs) (1 revision imported)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

local p = {}

p.prettify = function( frame ) local ugly = frame.args[1] local splitted = mw.text.split( ugly, ',', true ) return '' .. table.concat( splitted, ", " ) .. "" end

return p