Module:Extract text

Revision as of 23:06, 13 December 2020 by Sol (talk | contribs) (simplify)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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

local ExtractText = {}

function ExtractText.from_parentheses(frame)
	return (frame.args[1]:match'%((.*)%)')
end

return ExtractText