Module:script utilities/data: Difference between revisions

From Linguifex
Jump to navigation Jump to search
No edit summary
No edit summary
 
Line 41: Line 41:
["term_i"] = {
["term_i"] = {
tag = "i",
tag = "i",
class = "mention",
},
["term_nonlatin"] = {
tag = "",
class = "mention",
class = "mention",
},
},

Latest revision as of 16:19, 9 March 2023



local data = {}

data.translit = {
	["term"] = {
--[=[	can't be done until Kana transliterations are correctly parsed by [[Module:links]]
		["tag"] = "i",
		]=]
		["classes"] = "mention-tr",
	},
	["usex"] = {
		["tag"] = "i",
		["classes"] = "e-transliteration",
	},
	["head"] = {
		["classes"] = "headword-tr",
		["dir"] = "ltr",
	},
	["default"] = {},
}

data.transcription = {
	["head"] = {
		["tag"] = "span",
		["classes"] = "headword-ts",
		["dir"] = "ltr",
	},
	["default"] = {},
}

for key, value in pairs(data.translit) do
	if not value.tag then
		value.tag = "span"
	end
end

data.faces = {
	["term"] = {
		tag = "b",
		class = "mention",
	},
	["term_i"] = {
		tag = "i",
		class = "mention",
	},
	["term_nonlatin"] = {
		tag = "",
		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",
	},
	["usex"] = {
		["tag"] = "i",
	},
}

return data