Module:script utilities/data: Difference between revisions

Jump to navigation Jump to search
no edit summary
No edit summary
No edit summary
 
Line 3: Line 3:
data.translit = {
data.translit = {
["term"] = {
["term"] = {
--[=[ can't be done until Kana transliterations are correctly parsed by [[Module:links]]
["tag"] = "i",
["tag"] = "i",
]=]
["classes"] = "mention-tr",
["classes"] = "mention-tr",
},
},
Line 22: Line 24:
["classes"] = "headword-ts",
["classes"] = "headword-ts",
["dir"] = "ltr",
["dir"] = "ltr",
},
["usex"] = {
tag = "span",
["classes"] = "e-transcription",
},
},
["default"] = {},
["default"] = {},
Line 32: Line 38:
end
end


data.faces = {
local faces = {}
["term"] = {
 
tag = "b",
faces["term"] = {
class = "mention",
tag = "i",
},
class = "mention",
["term_i"] = {
}
tag = "i",
 
},
faces["head"] = {
["term_nonlatin"] = {
tag = "strong",
tag = "",
class = "headword",
class = "mention",
}
},
 
["head"] = {
faces["hypothetical"] = {
tag = "strong",
prefix = '<span class="hypothetical-star">*</span>',
class = "headword",
tag = "i",
},
class = "hypothetical",
["hypothetical"] = {
}
prefix = '<span class="hypothetical-star">*</span>',
 
tag = "i",
faces["bold"] = {
class = "hypothetical",
tag = "b",
},
}
["bold"] = {
 
tag = "b",
faces["plain"] = {
},
tag = "span",
["translation"] = {
tag = "span",
},
["nil"] = {
tag = "span",
},
["usex"] = {
["tag"] = "i",
},
}
}
faces["translation"] = faces["plain"]
data.faces = faces


return data
return data

Navigation menu