aboutsummaryrefslogtreecommitdiffstats
path: root/tests/mdx_swc.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Remove unneeded `extern crate`sLibravatar Hocdoc2022-11-101-1/+0
| | | | | Closes GH-28. Co-authored-by: Bernhard Berger <bernhardberger3456@gmail.com>
* Refactor to use default trait in testsLibravatar Titus Wormer2022-10-141-2/+2
|
* Rename crate to `markdown`Libravatar Titus Wormer2022-10-131-7/+7
|
* Refactor to split parse from compile optionsLibravatar Titus Wormer2022-10-061-10/+13
|
* Add support for turning mdast to hastLibravatar Titus Wormer2022-09-281-1/+1
|
* Add support for parsing MDX ESM, expressionsLibravatar Titus Wormer2022-09-191-0/+47
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).