此模块的文档可以在模块:Cleantext/doc创建
local p = {}
local function removetags(text)
return mw.text.killMarkers(mw.text.unstripNoWiki(text))
end
function p.main(frame)
local text = frame.args[1] or ""
local cleanedtext = removetags(text)
return cleanedtext
end
return p