aboutsummaryrefslogtreecommitdiffstats
path: root/readme.md
diff options
context:
space:
mode:
authorLibravatar Titus Wormer <tituswormer@gmail.com>2022-07-04 12:16:51 +0200
committerLibravatar Titus Wormer <tituswormer@gmail.com>2022-07-04 12:16:58 +0200
commitfaca28020f4894bdfcf5a4b164ebbc75864d8776 (patch)
tree93377413ae8c355e2d804f7e700241693b228e70 /readme.md
parente1cae8c705e66669d043f5269e9f58c09c7b0eaa (diff)
downloadmarkdown-rs-faca28020f4894bdfcf5a4b164ebbc75864d8776.tar.gz
markdown-rs-faca28020f4894bdfcf5a4b164ebbc75864d8776.tar.bz2
markdown-rs-faca28020f4894bdfcf5a4b164ebbc75864d8776.zip
Add support for attention (emphasis, strong)
Diffstat (limited to 'readme.md')
-rw-r--r--readme.md14
1 files changed, 8 insertions, 6 deletions
diff --git a/readme.md b/readme.md
index 103b201..d31a4c7 100644
--- a/readme.md
+++ b/readme.md
@@ -59,7 +59,7 @@ cargo doc --document-private-items
### Constructs
-- [ ] (5) attention (emphasis, strong)
+- [x] attention (emphasis, strong)
- [x] autolink
- [x] blank line
- [ ] (5) block quote
@@ -97,8 +97,8 @@ cargo doc --document-private-items
- [x] html (flow)
- [x] paragraph
- [x] thematic break
-- [ ] (8) text
- - [ ] attention (emphasis, strong) (text)
+- [x] text
+ - [x] attention (emphasis, strong) (text)
- [x] autolink
- [x] character escape
- [x] character reference
@@ -117,6 +117,7 @@ cargo doc --document-private-items
#### Docs
+- [ ] (1) Document attention
- [ ] (1) Go through all bnf
- [ ] (1) Go through all docs
- [ ] (1) Add overview docs on how everything works
@@ -127,9 +128,7 @@ cargo doc --document-private-items
#### Parse
-- [ ] (5) attention\
- test (`character_reference`, `hard_break_escape`, `hard_break_trailing`,
- `heading_atx`, `heading_setext`, `html_flow`, `thematic_break`)\
+- [ ] (2) attention/label interplay
- [ ] (8) block quote\
test (`code_fenced`, `definition`, `code_indented`, `heading_atx`, `heading_setext`,
`html_flow`, `misc_default_line_ending`, `thematic_break`)
@@ -150,6 +149,8 @@ cargo doc --document-private-items
#### Misc
+- [ ] (3) Unicode punctuation
+- [ ] (1) use `char::REPLACEMENT_CHARACTER`?
- [ ] (3) Check subtokenizer unraveling is ok
- [ ] (3) Remove splicing and cloning in subtokenizer
- [ ] (3) Pass more references around
@@ -271,3 +272,4 @@ important.
- [x] (8) Make paragraphs fast by merging them at the end, not checking whether
things interrupt them each line
- [x] (3) Add support for interrupting (or not)
+- [x] (5) attention