diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-09-09 17:28:22 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-09-09 17:28:22 +0200 |
commit | dc2dc105016936e1ddc7e1a41587976ec5215739 (patch) | |
tree | 3b8f3c10a6eada7cead27bd34a2bd6b8c94f0e27 /readme.md | |
parent | aadec72880363669fb909116e834e26c4ca0adb2 (diff) | |
download | markdown-rs-dc2dc105016936e1ddc7e1a41587976ec5215739.tar.gz markdown-rs-dc2dc105016936e1ddc7e1a41587976ec5215739.tar.bz2 markdown-rs-dc2dc105016936e1ddc7e1a41587976ec5215739.zip |
Add MDX extensions to readme
Diffstat (limited to 'readme.md')
-rw-r--r-- | readme.md | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -21,7 +21,7 @@ positional info, concrete tokens, and extensions. ## Feature highlights - [x] **[compliant][commonmark]** (100% to CommonMark) -- [x] **[extensions][]** (GFM, frontmatter, math) +- [x] **[extensions][]** (GFM, MDX, frontmatter, math) - [x] **[safe][security]** (100% safe rust, also 100% safe HTML by default) - [x] **[robust][test]** (2300+ tests, 100% coverage) @@ -138,7 +138,7 @@ These extensions are maintained in this project. They are not enabled by default but can be turned on with options. - frontmatter -- gfm +- GFM - autolink literal - footnote - strikethrough @@ -146,6 +146,12 @@ They are not enabled by default but can be turned on with options. - tagfilter - task list item - math +- MDX + - JSX (agnostic of JavaScript) + - expressions (agnostic of JavaScript) + +It’s planned to add support for integrating with SWC for MDX JSX and expressions +that is aware of JavaScript syntax, and for ESM (import/export). 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, |