Content deleted Content added
add the noviewer class to the link to stop the icons from being displayed in the media viewer (see Special:PermaLink/1041113542#Appearance in the Media Viewer) |
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|class=noviewer]]',
iconData.image,
iconData.tooltip and '|' .. iconData.tooltip or '',
iconData.link == false and '|link=' or '',
args.size or '16x16px'
)
|