aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-09-19Add support for parsing MDX ESM, expressionsLibravatar Titus Wormer1-1/+4
This commit adds support for hooks that lets a user integrate another parser with `micromark-rs`, to parse ESM and expressions according to a particular grammar (such as a programming language, typically JavaScript). For an example integrating with SWC, see `tests/test_utils/mod.rs`. The integration occurs with two functions passed in `options`: `mdx_expression_parse` and `mdx_esm_parse`. The can signal back to micromark when they are successful, whether there is an error at the end (in which case micromark will try to parse more), or whether there is a syntax error (in which case micromark will crash).
2022-09-07Add support for unicode identifiers in JSXLibravatar Titus Wormer1-0/+2
2022-08-19Refactor to loosen ranges in `Cargo.toml`Libravatar Titus Wormer1-3/+3
2022-08-18Add `pretty_assertions` to tests for diffsLibravatar Titus Wormer1-0/+1
2022-07-26Fix misclassified dependencyLibravatar Titus Wormer1-1/+1
2022-07-18Add a benchmarkLibravatar Titus Wormer1-0/+7
2022-07-15Add all commonmark testsLibravatar Titus Wormer1-0/+1
2022-07-04Use Rust to crawl unicodeLibravatar Titus Wormer1-2/+6