mirror of
https://github.com/jgm/pandoc.git
synced 2026-09-01 21:25:48 +00:00
20 lines
279 B
Markdown
20 lines
279 B
Markdown
```
|
|
% 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
|
|
|
|
```
|