aboutsummaryrefslogtreecommitdiff
path: root/test/command/5285.md
blob: ebad9374e75634a43f854ee6ac21e919958d7168 (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
33
34
35
36
37
```
% 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" ] ] ]
  ]
]
```