aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_utils (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Refactor to share identifier methodsLibravatar Titus Wormer2022-10-061-15/+5
|
* Add support for form feeds as html whitespaceLibravatar Titus Wormer2022-10-051-2/+1
|
* Add support for rewriting JSXLibravatar Titus Wormer2022-10-054-2/+1194
|
* Refactor to share a test utilityLibravatar Titus Wormer2022-10-043-27/+64
|
* Add support for creating a component, using layoutLibravatar Titus Wormer2022-10-033-2/+653
|
* Add support for turning hast into swcLibravatar Titus Wormer2022-09-305-51/+836
|
* Add note on future ideaLibravatar Titus Wormer2022-09-291-0/+4
|
* Add support for turning mdast to hastLibravatar Titus Wormer2022-09-284-245/+1986
|
* Add support for parsing MDX ESM, expressionsLibravatar Titus Wormer2022-09-191-0/+245
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).