Module:Item: Difference between revisions
Jump to navigation
Jump to search
Create: Minecraft Mod Wiki>Joker876 No edit summary |
Create: Minecraft Mod Wiki>Joker876 No edit summary |
||
Line 26: | Line 26: | ||
title = 'Minecraft Wiki: '..title | title = 'Minecraft Wiki: '..title | ||
end | end | ||
if not item then return '<strong><font color="red">Template error in {{Item}}: missing argument #1 (item)</font></strong>' end | |||
local text | local text | ||
if nolink then | if nolink then |
Revision as of 22:27, 2 May 2021
Documentation for this module may be created at Module:Item/doc
local p = {}
function p.item(f)
local origArgs = f
if f == mw.getCurrentFrame() then
origArgs = f:getParent().args
else
f = mw.getCurrentFrame()
end
local args = {}
for k,v in pairs(origArgs) do
if type(k) == "string" then k = k:lower() end
args[k] = v
end
local isMCwiki = args.minecraft or args.mc
local item = args[1] or args.item or args.i
local img = args.image or args.img or item
local alt = args[2] or item
local link = args.link or item
local nolink = args.nolink
local title = item
local imgsize = args.size or "21px"
if isMCwiki then
link = 'w:c:minecraft:'..link
title = 'Minecraft Wiki: '..title
end
if not item then return '<strong><font color="red">Template error in {{Item}}: missing argument #1 (item)</font></strong>' end
local text
if nolink then
text = table.concat{
'[[File:', img, '.png|', imgsize, '|link=]] ', alt
}
else
text = table.concat{
'[[File:', img, '.png|', imgsize, '|link=', link, ']] [[', link, '|<span title="', title, '">', alt, '</span>]]'
}
end
return tostring(mw.html.create('span'):wikitext(text))
end
return p