aboutsummaryrefslogtreecommitdiff
path: root/test/command
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2020-12-15 23:45:34 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2020-12-15 23:45:34 -0800
commitb4b4e32307499aafa2e6c1c713ee41f1c787ea76 (patch)
tree7bee37a1daf0a3c97d228646b66e79d4513d9f47 /test/command
parent8b872301eb68f0617c648cd6929ca8ff0ecbffd6 (diff)
downloadpandoc-b4b4e32307499aafa2e6c1c713ee41f1c787ea76.tar.gz
Properly handle boolean values in writing YAML metadata.
(Markdown writer.) This requires doctemplates >= 0.9. Closes #6388.
Diffstat (limited to 'test/command')
-rw-r--r--test/command/6388.md16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/command/6388.md b/test/command/6388.md
new file mode 100644
index 000000000..29a9156d7
--- /dev/null
+++ b/test/command/6388.md
@@ -0,0 +1,16 @@
+```
+% pandoc -t markdown -s
+---
+nvalue: false
+value: true
+---
+
+text
+^D
+---
+nvalue: false
+value: true
+---
+
+text
+```