Difference between revisions of "Module:Monster"
(Created page with "local export = {} local pagename = mw.title.getCurrentTitle().fullText function export.show(frame) return export.inline(frame.args.name) end function export.inline(name)...") |
(No difference)
|
Revision as of 22:43, 30 August 2025
Documentation for this module may be created at Module:Monster/doc
local export = {} local pagename = mw.title.getCurrentTitle().fullText function export.show(frame) return export.inline(frame.args.name) end function export.inline(name) return '[[File:' .. name:gsub(' ', '_') .. '_m.gif|16px]] [[' .. name .. ']]' end return export