Module:Item

From Curse of Aros
Revision as of 08:00, 20 June 2019 by Bart (talk | contribs)
Jump to: navigation, search

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

local export = {}

local pagename = mw.title.getCurrentTitle().fullText

function export.show(frame)
	local div = mw.html.create( 'div' )
	div:wikitext('[[File:' .. frame.args.name:gsub(' ', '_') .. '.png|16px]] [[' .. frame.args.name .. ']]')
	return tostring( div )
end

return export