diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/command/vars-and-metadata.md | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/test/command/vars-and-metadata.md b/test/command/vars-and-metadata.md new file mode 100644 index 000000000..c3dc895af --- /dev/null +++ b/test/command/vars-and-metadata.md @@ -0,0 +1,15 @@ +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 +``` |