Anonymous

Module:Data Table/Tags: Difference between revisions

From Zelda Wiki, the Zelda encyclopedia
no edit summary
(SyntaxHighlight)
No edit summary
Line 324: Line 324:
["SyntaxHighlight"] = {
["SyntaxHighlight"] = {
formatter = function(cell, tableArgs, tagArgs)
formatter = function(cell, tableArgs, tagArgs)
local text = frame:extensionTag({
local text, notes = utilsMarkup.separateMarkup(cell)
local codeBlock = frame:extensionTag({
name = "syntaxhighlight",
name = "syntaxhighlight",
args = {
args = {
inline = true,
lang = tagArgs[1] or "lua"
lang = tagArgs[1] or "lua"
},
},
content = cell
content = text
})
})
return {
return {
text = text,
text = codeBlock..notes,
size = cell:len(),
size = text:len(),
}
}
end,
end,