pandoc/test/command/5285.md

38 lines
367 B
Markdown
Raw Normal View History

```
% pandoc -t native
- a
b
- a
- b
^D
[ BulletList
[
[ Para [ Str "a" ], Para [ Str "b" ] ]
,
[ Para [ Str "a" ] ]
,
[ Para [ Str "b" ] ]
]
]
```
```
% pandoc -t native
- foo
foo
- foo
> foo
^D
[ BulletList
[
[ Para [ Str "foo" ], Para [ Str "foo" ] ]
,
[ Para [ Str "foo" ], BlockQuote [ Para [ Str "foo" ] ] ]
]
]
```