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