Content deleted Content added
Sync error code from main |
add unstrip option |
||
(One intermediate revision by the same user not shown) | |||
Line 3:
local function MultiReplace(args)
local input = args[1] or "{{{1}}}"
if args.unstrip == "yes" then input = mw.text.unstrip(input) end
local plain = args.plain == "yes"
Line 45 ⟶ 47:
end
function p.main(frame, ...)
local args =
▲ args = frame:getParent().args
return MultiReplace(args)
end
|