warframe

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

local p = {}

function p.test(frame)
	foundItem = mw.title.new(frame.args[1])
					:getContent()
					:gsub('^.+|%s?' .. frame.args[2] .. '%s*=%s*', '')
					:gsub('}}.*$', '')
					:gsub('|.*$', '')
					:gsub('%s*$', '')

	return foundItem
end

return p