-
-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
RST reader: handle explicit reference links
This case was missed when changing the reference link strategy for RST to allow a single pass.
- Loading branch information
Showing
2 changed files
with
29 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
``` | ||
% 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). | ||
``` |