Module:PrettyList

From eCatalog Manager Wiki
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