Module:Icon: Difference between revisions
Content deleted Content added
Johnrdorazio (talk | contribs) m 1 revision imported |
suppress links for modules where the "link" field in the data table is false |
||
Line 1:
-- This module implements [[Template:Icon]].
require("Module:No globals")
local data = mw.loadData('Module:Icon/data')▼
local p = {}
function p._main(args, data)
data = data or mw.loadData(DATA_MODULE)
local code = args.class or args[1]
local iconData
Line 16 ⟶ 18:
end
return string.format(
'[[File:%s%s%s|%s|
iconData.image,
iconData.tooltip and '|' .. iconData.tooltip or '',
iconData.link == false and '|link=' or '',
args.size or '16x16px'
)
|