Module:Qhm

From WormRP
Revision as of 00:02, 23 January 2018 by wikipedia>Ahecht (fix corner case)
(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