blob: 3a2100ec6053efeb74ccc046eefd1eab728b54a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
```
% pandoc -f markdown -t native -s
---
header-includes: |
\makeatletter
\let\old@verbatim@font=\verbatim@font
\def\verbatim@font{%
\fontsize{10}{12}%
\old@verbatim@font
}
\makeatother
...
^D
Pandoc
Meta
{ unMeta =
fromList
[ ( "header-includes"
, MetaBlocks
[ RawBlock
(Format "tex")
"\\makeatletter\n\\let\\old@verbatim@font=\\verbatim@font\n\\def\\verbatim@font{%\n\\fontsize{10}{12}%\n\\old@verbatim@font\n}\n\\makeatother"
]
)
]
}
[]
```
|