Module:Item

From Curse of Aros
Revision as of 07:54, 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('[[' .. frame.args.name .. ']]')
	return tostring( div )
end

return export