diff options
author | John MacFarlane <jgm@berkeley.edu> | 2019-10-28 21:14:01 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2019-10-28 21:14:01 -0700 |
commit | 47566817c559557f5bc6c9c503afa1a37bf7df90 (patch) | |
tree | 430027938b0e21c53a115ce449aae755f6a319a6 /test/command | |
parent | 57e2148ca2b9604b35cfceacbd89487d6f5f8aab (diff) | |
download | pandoc-47566817c559557f5bc6c9c503afa1a37bf7df90.tar.gz |
Shared: improve isTight.
If a list has an empty item, this should not count against
its being a tight list.
Closes #5857.
Diffstat (limited to 'test/command')
-rw-r--r-- | test/command/5857.md | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/command/5857.md b/test/command/5857.md new file mode 100644 index 000000000..31320cd12 --- /dev/null +++ b/test/command/5857.md @@ -0,0 +1,11 @@ +``` +% pandoc -f native -t markdown +[BulletList + [[Plain [Str "a"]] + ,[] + ,[Plain [Str "b"]]]] +^D +- a +- +- b +``` |