Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2023-05-13 | Remove superfluous code | 1 | -4/+1 | ||
2023-04-22 | Fix crash in MDX whitespace | 1 | -9/+11 | ||
Related-to: GH-26. Closes GH-60. | |||||
2022-11-10 | Refactor code-style for Rust 1.65 | 1 | -1/+1 | ||
Closes GH-29. Reviewed-by: Titus Wormer <tituswormer@gmail.com> Co-authored-by: Bernhard Berger <bernhardberger3456@gmail.com> | |||||
2022-10-13 | Add more tests for whitespace in jsx tags | 1 | -10/+2 | ||
2022-10-06 | Refactor to share identifier methods | 1 | -24/+26 | ||
2022-09-19 | Add support for parsing MDX ESM, expressions | 1 | -3/+0 | ||
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 support for mdx attribute (value) expressions | 1 | -2/+48 | ||
2022-09-09 | Add mdx expression (flow, text) | 1 | -1/+1 | ||
2022-09-09 | Add some missing docs | 1 | -14/+9 | ||
2022-09-09 | Fix to allow blank lines in mdx jsx (flow) | 1 | -44/+22 | ||
2022-09-09 | Refactor to move byte, char info to own file | 1 | -55/+24 | ||
2022-09-09 | Add docs to mdx jsx | 1 | -1/+162 | ||
2022-09-08 | Add support for mdx jsx (flow) | 1 | -70/+119 | ||
2022-09-08 | Refactor to move jsx parsing to partial | 1 | -96/+70 | ||
2022-09-08 | Add tests for mdx jsx (text) | 1 | -11/+36 | ||
2022-09-07 | Add support for recoverable syntax errors | 1 | -47/+41 | ||
2022-09-07 | Add support for unicode identifiers in JSX | 1 | -24/+95 | ||
2022-09-06 | Add initial states for MDX JSX (text) | 1 | -0/+877 | ||