1
2
3
4
5
6
7
8return {
9 name = "replacements",
10 version = "1.00",
11 comment = "Good riddance",
12 author = "Alan Braslau and Hans Hagen",
13 copyright = "ConTeXt development team",
14 replacements = {
15 [ [[\emdash]] ] = "—",
16 [ [[\endash]] ] = "–",
17 [ [[{\emdash}]] ] = "—",
18 [ [[{\endash}]] ] = "–",
19 [ [[Th\^e\llap{\raise 0.5ex\hbox{\'{\relax}}}]] ] = "Thánh",
20 [ [[Th{\^e}\llap{\raise0.5ex\hbox{\'{\relax}}}]] ] = "Thánh",
21 [ [[Th{\^e}\llap{\raise 0.5ex\hbox{\'{\relax}}}]] ] = "Thánh",
22 },
23}
24 |