mirror of
https://github.com/jgm/pandoc.git
synced 2026-08-28 17:20:47 +08: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.
23 lines
658 B
Markdown
23 lines
658 B
Markdown
```
|
|
% pandoc -frst -tmarkdown_strict
|
|
- One issue fixed: `issue 123`_.
|
|
|
|
- One change merged: `Big change <pull 234_>`_.
|
|
|
|
- Improved the `home page <https://example.com/homepage>`_.
|
|
|
|
- One more `small change`__.
|
|
|
|
.. _issue 123: https://github.com/joe/project/issues/123
|
|
.. _pull 234: https://github.com/joe/project/pull/234
|
|
__ https://github.com/joe/project/issues/999
|
|
|
|
^D
|
|
- One issue fixed: [issue
|
|
123](https://github.com/joe/project/issues/123).
|
|
- One change merged: [Big
|
|
change](https://github.com/joe/project/pull/234).
|
|
- Improved the [home page](https://example.com/homepage).
|
|
- One more [small change](https://github.com/joe/project/issues/999).
|
|
```
|