Module:Format TemplateData/config: Difference between revisions
Jump to navigation
Jump to search
m 1 revision imported: more templates and modules |
en>Izno Restored revision 1240310877 by Izno (talk): Well, whatever is going wrong on Template:Format TemplateData is not my fault |
||
| Line 4: | Line 4: | ||
mw.loadData() | mw.loadData() | ||
]=] | ]=] | ||
return { | |||
catProblem = false, | |||
classMultiColumns = "column-multiple", | |||
return { catProblem | classNoNumTOC = "nonumtoc", | ||
classTable = { "wikitable", "templatedata-params" }, | |||
cssParams = { ["border"] = "#B3B7FF 1px solid" }, | |||
docpageCreate = "%s/doc", | |||
docpageDetect = "/doc", | |||
helpBoolean = false, | |||
helpContent = false, | |||
helpDate = false, | |||
helpFile = false, | |||
helpFormat = false, | |||
helpLine = false, | |||
helpNumber = false, | |||
helpPage = false, | |||
helpString = false, | |||
helpTemplate = false, | |||
helpURL = false, | |||
helpUser = false, | |||
msgDescMiss = "missing <code>description</code>", | |||
permit = { | |||
boole = { | |||
[true] = { | |||
css = { | |||
["color"] = "#050", | |||
["font-weight"] = "bold" | |||
}, | |||
lead = false, | |||
show = "True" | |||
}, | |||
[false] = { | |||
css = { | |||
["color"] = "#610", | |||
["font-weight"] = "bold" | |||
}, | |||
lead = false, | |||
show = "False" | |||
} | |||
}, | |||
css = { | |||
tableheadbg = { ["background-color"] = "#B3B7FF" }, | |||
required = { ["border-left"] = "3px solid black" }, | |||
suggested = { ["border-left"] = "3px solid #888" }, | |||
optional = { ["border-left"] = "3px solid #CCC" }, | |||
deprecated = { | |||
["background-color"] = "#FDD", | |||
["border-left"] = "3px dotted red" | |||
} | |||
} | |||
}, | |||
tStylesTOCnum = "TOC nonum", | |||
tStylesMultiColumns = "column-multiple", | |||
serial = Serial | |||
} | |||
Revision as of 18:55, 14 August 2024
Documentation for this module may be created at Module:Format TemplateData/config/doc
local Serial = "2022-03-20"
--[=[
enwiki configuration {{TemplateData}}
mw.loadData()
]=]
return {
catProblem = false,
classMultiColumns = "column-multiple",
classNoNumTOC = "nonumtoc",
classTable = { "wikitable", "templatedata-params" },
cssParams = { ["border"] = "#B3B7FF 1px solid" },
docpageCreate = "%s/doc",
docpageDetect = "/doc",
helpBoolean = false,
helpContent = false,
helpDate = false,
helpFile = false,
helpFormat = false,
helpLine = false,
helpNumber = false,
helpPage = false,
helpString = false,
helpTemplate = false,
helpURL = false,
helpUser = false,
msgDescMiss = "missing <code>description</code>",
permit = {
boole = {
[true] = {
css = {
["color"] = "#050",
["font-weight"] = "bold"
},
lead = false,
show = "True"
},
[false] = {
css = {
["color"] = "#610",
["font-weight"] = "bold"
},
lead = false,
show = "False"
}
},
css = {
tableheadbg = { ["background-color"] = "#B3B7FF" },
required = { ["border-left"] = "3px solid black" },
suggested = { ["border-left"] = "3px solid #888" },
optional = { ["border-left"] = "3px solid #CCC" },
deprecated = {
["background-color"] = "#FDD",
["border-left"] = "3px dotted red"
}
}
},
tStylesTOCnum = "TOC nonum",
tStylesMultiColumns = "column-multiple",
serial = Serial
}