FormatTitle
Revision as of 16:10, 10 August 2016 by en>Candalua
Documentation for this module may be created at doc
local p = {}
--rimuove i tag dalla stringa passatagli
function p.format(frame)
local title = frame.args[1]
title, i = title:gsub("%b<>", " ")
return title
end
return p