Documentation for this module may be created at Module:Recipe/doc
local recipe = {} function recipe.list(frame) local s = {} table.insert(s,"<div class='obtain recipebox'><tabber>") for k,v in ipairs(frame:getParent().args) do table.insert(s,"|-|"..k.."="..v) end table.insert(s,"</tabber></div>") return table.concat(s) end return recipe