FormatTitle

From Redazione
Revision as of 16:10, 10 August 2016 by en>Candalua
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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