Module:User info 2024
Appearance
-- 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 )
output = string.gsub(frame.args[1],",","|")
return output
end
function p.pass( frame )
return frame.args[1]
end
return p