Module:formatting/data

From Laenkea
< Module:formatting
Revision as of 13:09, 6 August 2023 by Maria (talk | contribs) (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", }, } }")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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",
		},
		["translation"] = {
			tag = "span",
		},
		["nil"] = {
			tag = "span",
		},
	}
}