Module:Qhm

From WormRP
Revision as of 11:32, 15 April 2018 by Keira (talk | contribs) (1 revision imported)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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

local p = {}

function p.main(frame)
	local out = mw.ustring.gsub(frame:getParent().args[1] or "","%[%[ *([%?-]) *%]%]","%1")
	out = mw.ustring.gsub(out,"%[%[ *[%?-] *| *(.-) *%]%]","%1")
	return out
end

return p