From a056a7b3716bd4cc78e47e64f7d735c5bd5b82e6 Mon Sep 17 00:00:00 2001 From: Titus Wormer Date: Wed, 29 Jun 2022 17:15:17 +0200 Subject: 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 --- readme.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'readme.md') diff --git a/readme.md b/readme.md index 16f81d9..7c70905 100644 --- a/readme.md +++ b/readme.md @@ -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`, -- cgit