Anonymous

Module:Data Table/Tags: Difference between revisions

From Zelda Wiki, the Zelda encyclopedia
SyntaxHighlight
mNo edit summary
(SyntaxHighlight)
Line 319: Line 319:
text = termLink,
text = termLink,
sortValue = sortValue,
sortValue = sortValue,
}
end,
},
["SyntaxHighlight"] = {
formatter = function(cell, tableArgs, tagArgs)
local text = frame:extensionTag({
name = "syntaxhighlight",
args = {
lang = tagArgs[1] or "lua"
},
content = cell
})
return {
text = text,
size = cell:len(),
}
}
end,
end,