blob: 78b2f2859c27bfdcb52d1d90c0ed6b1f5f5cfc4b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
command.25.$(file.patterns.example)=insert_template $(ctx.template.list.example)
ctx.template.list.example=\
bold=font.bold.example|\
emphasized=font.emphasized.example|\
|\
inline math=math.inline.example|\
display math=math.display.example|\
|\
itemize=structure.itemize.example
ctx.template.font.bold.example=<b>?</b>
ctx.template.font.emphasized.example=<em>?</em>
ctx.template.math.inline.example=<m>?</m>
ctx.template.math.display.example=<math>?</math>
ctx.template.structure.itemize.example=\
<itemize>\n\
<item>?</item>\n\
<item>?</item>\n\
<item>?</item>\n\
</itemize>\n
|