The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
local p = {}
function p.parse(string)
local ret = mw.text.split(string:gsub('@@','\1'),'@')
for i, v in pairs(ret) do
ret[i] = v:gsub('\1','@')
end
return ret
end
return p