Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2022-10-06 | Refactor to split parse from compile options | Titus Wormer | 1 | -26/+38 | |
2022-10-06 | Add support for HTML 4 character references in JSX attributes | Titus Wormer | 1 | -0/+91 | |
2022-09-28 | Add support for turning mdast to hast | Titus Wormer | 1 | -3/+5 | |
2022-09-26 | Add support for compiling to mdast | Titus Wormer | 1 | -1/+273 | |
See: <https://github.com/syntax-tree/mdast>. | |||||
2022-09-19 | Add support for parsing MDX ESM, expressions | Titus Wormer | 1 | -48/+48 | |
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-09 | Add docs for mdx expressions | Titus Wormer | 1 | -1/+1 | |
2022-09-09 | Add support for mdx attribute (value) expressions | Titus Wormer | 1 | -160/+142 | |
2022-09-08 | Add support for mdx jsx (flow) | Titus Wormer | 1 | -0/+24 | |
2022-09-08 | Add tests for mdx jsx (text) | Titus Wormer | 1 | -0/+821 | |