Module:formatting/data: Difference between revisions
Jump to navigation
Jump to search
(Created page with "return { ["faces"] = { ["term"] = { tag = "i", class = "mention", }, ["head"] = { tag = "strong", class = "headword", }, ["hypothetical"] = { prefix = '<span class="hypothetical-star">*</span>', tag = "i", class = "hypothetical", }, ["bold"] = { tag = "b", }, ["translation"] = { tag = "span", }, ["nil"] = { tag = "span", }, } }") |
No edit summary |
||
Line 16: | Line 16: | ||
["bold"] = { | ["bold"] = { | ||
tag = "b", | tag = "b", | ||
}, | |||
["example"] = { | |||
tag = "i", | |||
class = "use-example", | |||
}, | }, | ||
["translation"] = { | ["translation"] = { |
Latest revision as of 13:34, 7 August 2023
Documentation for this module may be created at Module:formatting/data/documentation
return {
["faces"] = {
["term"] = {
tag = "i",
class = "mention",
},
["head"] = {
tag = "strong",
class = "headword",
},
["hypothetical"] = {
prefix = '<span class="hypothetical-star">*</span>',
tag = "i",
class = "hypothetical",
},
["bold"] = {
tag = "b",
},
["example"] = {
tag = "i",
class = "use-example",
},
["translation"] = {
tag = "span",
},
["nil"] = {
tag = "span",
},
}
}