47,679
edits
![]() | We're back! Sorry, bad combo of sickness, funeral and a month-long trip abroad. The site is back now. ![]() |
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 | ||
local faces = {} | |||
faces["term"] = { | |||
tag = "i", | |||
class = "mention", | |||
} | |||
faces["head"] = { | |||
tag = "strong", | |||
class = "headword", | |||
} | |||
faces["hypothetical"] = { | |||
prefix = '<span class="hypothetical-star">*</span>', | |||
tag = "i", | |||
class = "hypothetical", | |||
} | |||
faces["bold"] = { | |||
tag = "b", | |||
} | |||
faces["plain"] = { | |||
tag = "span", | |||
} | } | ||
faces["translation"] = faces["plain"] | |||
data.faces = faces | |||
return data | return data |