mirror of
https://github.com/jgm/pandoc.git
synced 2026-08-28 17:20:47 +08:00
356ece29cb
on bullet lists. They are now nested by 2 spaces instead of 4. See #8011.
16 lines
204 B
Markdown
16 lines
204 B
Markdown
```
|
|
% pandoc -f docbook -t gfm
|
|
<itemizedlist mark="none">
|
|
<listitem>
|
|
<simpara>❏ a</simpara>
|
|
</listitem>
|
|
<listitem>
|
|
<simpara>✓ b</simpara>
|
|
</listitem>
|
|
</itemizedlist>
|
|
^D
|
|
- [ ] a
|
|
|
|
- [x] b
|
|
```
|