More actions
This module implements some string functions to break apart semi-colon separate template parameters and turn them into links. This is so that a parameter setup to be digested into a Cargo list can be displayed without being pulled via query.
To use:
- {{#invoke:String | splitAndLink | source={{{the template parameter you are split linking|}}} }}
-- Module:String
local p = {}
function p.splitAndLink(frame)
local delimiter = frame.args.delimiter or ";"
local source = frame.args.source or ""
local results = {}
for part in (source..delimiter):gmatch("(.-)"..delimiter) do
if part~="" then --string is empty
table.insert(results, string.format("<li>[[%s]]</li>", part))
else
table.insert(results, string.format("<li>%s</li>", part))
end
end
return "<ul>" .. table.concat(results) .. "</ul>"
end
return p