aboutsummaryrefslogtreecommitdiff
path: root/test/command/5285.md
blob: 6c5b7f98734726f0ea30b718b3d1394837c1de64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
```
% 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" ] ] ]
    ]
]
```