diff options
author | John MacFarlane <jgm@berkeley.edu> | 2017-12-24 13:02:18 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2017-12-24 13:02:18 -0800 |
commit | ee5fe9bf2c0617ddbad0e517f78e7fffe4e737df (patch) | |
tree | 8e558ba7a6a7372c59db1732c826754ea2f6c416 /test | |
parent | bb5f4c9b228c1ce7a04b0606d7e363328b89114b (diff) | |
download | pandoc-ee5fe9bf2c0617ddbad0e517f78e7fffe4e737df.tar.gz |
RST reader: allow empty list items (as docutils does).
Closes #4193.
Diffstat (limited to 'test')
-rw-r--r-- | test/command/4193.md | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/command/4193.md b/test/command/4193.md new file mode 100644 index 000000000..44c7d70cc --- /dev/null +++ b/test/command/4193.md @@ -0,0 +1,10 @@ +``` +% pandoc -f rst -t native +- + a +- b +^D +[BulletList + [[Plain [Str "a"]] + ,[Plain [Str "b"]]]] +``` |