Module:FormatLinks
Jump to navigation
Jump to search
Documentation for this module may be created at Module:FormatLinks/doc
local FormatLinksModuleDingus = {}
function FormatLinksModuleDingus.Format(frame)
local Input = frame.args[1] or ""
local Parts = {}
for Word in string.gmatch(Input, '([^,]+)') do
table.insert(Parts, Word)
end
local Result = {}
for i, Part in ipairs(Parts) do
if i == 1 then
table.insert(Result, string.format("[[%s]]", Part))
else
table.insert(Result, string.format("[[%s]]", Part))
end
end
return table.concat(Result, "<br>")
end
return FormatLinksModuleDingus