Module:Consecutive links

From Caves of Qud Wiki
Revision as of 15:52, 12 August 2019 by Egocarib (talk | contribs) (revert previous two changes)
Jump to navigation Jump to search

local p = {}

function p.parse(frame)
local separator = frame.args[2]
local replacer = frame.args[3]
local prefix = frame.args[4]
local postfix = frame.args[5]
local b = string.gsub(frame.args[1], "%s*" .. separator .. "%s*", "]]" .. replacer .. "[[")
return prefix .. "[[" .. b .. "]]" .. postfix
end
return p