Jump to content

Module:User info 2024: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
Undo revision 27107844 by RAdimer-WMF (talk)
No edit summary
Line 6: Line 6:
function p.convert( frame )
function p.convert( frame )
output = string.gsub(frame.args[1],",","|")
output = string.gsub(frame.args[1],",","|")
return "" .. output .. ""
return "{{#babel:" .. output .. "}}"
end
end



Revision as of 20:05, 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 )
	output = string.gsub(frame.args[1],",","|")
	return "{{#babel:" .. output .. "}}"
end

return p