diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-09-05 16:06:47 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-09-05 16:06:47 +0200 |
commit | 537bf2d6b7b3a2f7855f7628159aecaea2acdb0f (patch) | |
tree | 065cca9d17fe644dc925beab06f4f78510d037f4 /readme.md | |
parent | 1ba9f2c632fb6c9e57f8ad2213894d4f1235677d (diff) | |
download | markdown-rs-537bf2d6b7b3a2f7855f7628159aecaea2acdb0f.tar.gz markdown-rs-537bf2d6b7b3a2f7855f7628159aecaea2acdb0f.tar.bz2 markdown-rs-537bf2d6b7b3a2f7855f7628159aecaea2acdb0f.zip |
Update docs for extensions
Diffstat (limited to 'readme.md')
-rw-r--r-- | readme.md | 25 |
1 files changed, 11 insertions, 14 deletions
@@ -21,14 +21,14 @@ positional info, concrete tokens, and extensions. ## Feature highlights - [x] **[compliant][commonmark]** (100% to CommonMark) -- [x] **[extensions][]** (GFM, directives, frontmatter, math) +- [x] **[extensions][]** (GFM, frontmatter, math) - [x] **[safe][security]** (100% safe rust, also 100% safe HTML by default) - [x] **[robust][test]** (1800+ tests, 100% coverage) It’s also `#![no_std]` + `alloc`, has tons of docs, and has a single dependency (for optional debug logging). -> 🐣 **Note**: extensions and coverage are currently within progress. +> 🐣 **Note**: coverage is currently within progress. ## When to use this @@ -135,18 +135,15 @@ micromark supports extensions. These extensions are maintained in this project. They are not enabled by default but can be turned on with options. -> 🐣 **Note**: extensions are currently within progress. - -- [ ] directive -- [x] frontmatter -- [x] gfm - - [x] autolink literal - - [x] footnote - - [x] strikethrough - - [x] table - - [x] tagfilter - - [x] task list item -- [x] math +- frontmatter +- gfm + - autolink literal + - footnote + - strikethrough + - table + - tagfilter + - task list item +- math It is not a goal of this project to support lots of different extensions. It’s instead a goal to support incredibly common, somewhat standardized, |