FormatTitle

From Redazione
Jump to navigation Jump to search
 
m (una versione importata)
 
(No difference)

Latest revision as of 16:52, 5 November 2020

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