Module:Nowiki
Documentation for this module may be created at Module:Nowiki/doc
local p = {}
p.main = function(f)
local args = f:getParent().args
if args[1] == nil then
return ""
end
return f:callParserFunction('#tag', {"nowiki", args[1]})
end
return p