Module:Item

From Curse of Aros
Revision as of 08:03, 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)
	return '[[File:' .. frame.args.name:gsub(' ', '_') .. '_m.png|16px]] [[' .. frame.args.name .. ']]'
end

return export