Module:User info 2024: Difference between revisions
Appearance
Content deleted Content added
No edit summary |
No edit summary |
||
Line 5: | Line 5: | ||
function p.convert( frame ) |
function p.convert( frame ) |
||
return frame:callParserFunction('#babel', mw.text.split(frame.args[1],',',plain)) |
return frame:callParserFunction('#babel', mw.text.split(string.gsub(frame.args[1]," ",""),',',plain)) |
||
end |
end |
||
Revision as of 20:31, 12 July 2024
-- Formats a Babel parser function call from a list of comma-separated language codes.
-- Intent is to be used in [[Template:User info 2024]] to allow for a Babel parameter, which takes comma-separated values
local p = {}
function p.convert( frame )
return frame:callParserFunction('#babel', mw.text.split(string.gsub(frame.args[1]," ",""),',',plain))
end
return p