mirror of
https://github.com/jgm/pandoc.git
synced 2026-07-11 20:07:22 +00:00
0fe6254535
We used to insert extra spaces to ensure that the content respected the four-space rule. That is not really necessary now, since pandoc's markdown and most markdowns don't follow the four-space rule. Those who want the old behavior can obtain it by using `-t markdown+four_space_rule`. Closes #7172.
105 lines
1.7 KiB
Markdown
105 lines
1.7 KiB
Markdown
tests adapted from <https://github.github.com/gfm/#task-list-items-extension->
|
|
|
|
```
|
|
% pandoc
|
|
- [ ] foo
|
|
- [x] bar
|
|
^D
|
|
<ul class="task-list">
|
|
<li><label><input type="checkbox" />foo</label></li>
|
|
<li><label><input type="checkbox" checked="" />bar</label></li>
|
|
</ul>
|
|
```
|
|
|
|
|
|
```
|
|
% pandoc
|
|
- [x] foo
|
|
- [ ] bar
|
|
- [x] baz
|
|
- [ ] bim
|
|
^D
|
|
<ul class="task-list">
|
|
<li><label><input type="checkbox" checked="" />foo</label>
|
|
<ul class="task-list">
|
|
<li><label><input type="checkbox" />bar</label></li>
|
|
<li><label><input type="checkbox" checked="" />baz</label></li>
|
|
</ul></li>
|
|
<li><label><input type="checkbox" />bim</label></li>
|
|
</ul>
|
|
```
|
|
|
|
|
|
custom html task list test:
|
|
|
|
```
|
|
% pandoc
|
|
- [ ] unchecked
|
|
- plain item
|
|
- [x] checked
|
|
|
|
paragraph
|
|
|
|
1. [ ] ordered unchecked
|
|
2. [] plain item
|
|
3. [x] ordered checked
|
|
|
|
paragraph
|
|
|
|
- [ ] list item with a
|
|
|
|
second paragraph
|
|
|
|
- [x] checked
|
|
^D
|
|
<ul>
|
|
<li><label><input type="checkbox" />unchecked</label></li>
|
|
<li>plain item</li>
|
|
<li><label><input type="checkbox" checked="" />checked</label></li>
|
|
</ul>
|
|
<p>paragraph</p>
|
|
<ol type="1">
|
|
<li><label><input type="checkbox" />ordered unchecked</label></li>
|
|
<li>[] plain item</li>
|
|
<li><label><input type="checkbox" checked="" />ordered
|
|
checked</label></li>
|
|
</ol>
|
|
<p>paragraph</p>
|
|
<ul class="task-list">
|
|
<li><p><label><input type="checkbox" />list item with a</label></p>
|
|
<p>second paragraph</p></li>
|
|
<li><p><label><input type="checkbox"
|
|
checked="" />checked</label></p></li>
|
|
</ul>
|
|
```
|
|
|
|
latex task list test:
|
|
|
|
```
|
|
% pandoc -t latex
|
|
- [ ] foo bar
|
|
|
|
baz
|
|
|
|
- [x] ok
|
|
^D
|
|
\begin{itemize}
|
|
\item[$\square$]
|
|
foo bar
|
|
|
|
baz
|
|
\item[$\boxtimes$]
|
|
ok
|
|
\end{itemize}
|
|
```
|
|
|
|
round trip:
|
|
|
|
```
|
|
% pandoc -f markdown -t markdown
|
|
- [ ] foo
|
|
- [x] bar
|
|
^D
|
|
- [ ] foo
|
|
- [x] bar
|
|
``` |