mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-03 06:05:45 +00:00
16 lines
155 B
Markdown
16 lines
155 B
Markdown
Variables should not leak into metadata in the Markdown writer:
|
|
|
|
```
|
|
% pandoc -t markdown -Vfoo=1 -Vbar=2 -s
|
|
---
|
|
foo: x
|
|
...
|
|
zib
|
|
^D
|
|
---
|
|
foo: x
|
|
---
|
|
|
|
zib
|
|
```
|