diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-06-29 17:15:17 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-06-29 17:15:17 +0200 |
commit | a056a7b3716bd4cc78e47e64f7d735c5bd5b82e6 (patch) | |
tree | 18395a3438441f5ddeca984fab0db8c9f8133a2c /readme.md | |
parent | fa37356074c1bc3a0f74b6f6a22e038b7842ff4d (diff) | |
download | markdown-rs-a056a7b3716bd4cc78e47e64f7d735c5bd5b82e6.tar.gz markdown-rs-a056a7b3716bd4cc78e47e64f7d735c5bd5b82e6.tar.bz2 markdown-rs-a056a7b3716bd4cc78e47e64f7d735c5bd5b82e6.zip |
Fix a bunch of bugs with definitions, references
* Fix bug where whitespace after `:` was not allowed, it is
* Fix bug where escapes in labels did not work due to typo
* Fix to prefer first definition
* Fix whitespace after definitions
* Fix matching by adding normalizing
* Fix reference from being output as data
Diffstat (limited to '')
-rw-r--r-- | readme.md | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -143,15 +143,15 @@ cargo doc --document-private-items #### Parse - [ ] (1) Parse initial and final space_or_tab of paragraphs (in text)\ - test (`code_indented`, `hard_break_escape`, `hard_break_trailing`, + test (`code_indented`, `definition`, `hard_break_escape`, `hard_break_trailing`, `heading_atx`, `heading_setext`, `html_flow`, `misc_soft_break`, `misc_tabs`, `thematic_break`) -- [ ] (3) Interrupting (html flow complete) +- [ ] (3) Interrupting (html flow complete, definition + code_indented) - [ ] (5) attention\ test (`character_reference`, `hard_break_escape`, `hard_break_trailing`, `heading_atx`, `heading_setext`, `html_flow`, `thematic_break`)\ - [ ] (8) block quote\ - test (`code_fenced`, `code_indented`, `heading_atx`, `heading_setext`, + test (`code_fenced`, `definition`, `code_indented`, `heading_atx`, `heading_setext`, `html_flow`, `misc_default_line_ending`, `thematic_break`) - [ ] (8) list\ test (`character_reference`, `code_indented`, `heading_setext`, |