Difference between revisions of "Module:Tone superscript"

From Lolibrary Wiki
m (Protected "Module:Tone superscript": High-risk module ([Edit=Require autoconfirmed or confirmed access] (indefinite)))
 
m (1 revision imported)
 

Latest revision as of 22:31, 6 July 2021

Documentation for this module may be created at Module:Tone superscript/doc

local p = {}

function p.main(frame)
	local root = mw.html.create()
	local arg = frame:getParent().args[1] or ""
	local x = arg:gsub("%f[%d%s]([%d\*]+)", "<sup>%1</sup>")
	root:tag('span'):wikitext(x)
	local tracking = ''
	if string.match(arg, "</?sup>") then tracking = '[[Category:Pages using Tone superscript with sup tags]]' end
	return tostring(root)..tracking
end

return p