FormatTitle

From Redazione
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