-
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.
fix issues link references and prototypes
Link with names that clashed with properties inherited from the Object prototype (such as "constructor") were not expanding. This fixes this issue. Before this change, markdown of this form...: Link: [constructor][]. [constructor]: https://example.org/ ...resulted in HTML output of this form: <p>Link: [constructor][].</p> With this change, it now renders as expected: <p>Link: <a href="https://example.org/">constructor</a>.</p>
- Loading branch information
Showing
3 changed files
with
21 additions
and
1 deletion.
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
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