Documentation for this module may be created at మాడ్యూల్:Zws/doc
local p = {}
function p.main(frame)
local parent = frame:getParent()
local args = parent.args[1] and parent.args or frame.args
s = args[1]
if (s == nil) then
s = "​"
else
s = mw.ustring.gsub(args[1], "%s+", "​")
end
return s
end
return p