aboutsummaryrefslogtreecommitdiff
path: root/test/command/11162.md
blob: f0496ef7cc229b8d5f3d2b137326a71eebed6bce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
```
% pandoc -f native -t rst
[ BulletList
    [ [ Plain [ Str "list" ]
      , CodeBlock ( "" , [ "ruby" ] , [] ) "code = 7 # comment"
      ]
    , [ Plain [ Str "second" , Space , Str "item" ] ]
    ]
]
^D
- list

  .. code:: ruby

     code = 7 # comment

- second item

```