Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add a lot of tests on how mdast, unist work | Titus Wormer | 2022-10-13 | 1 | -5/+233 |
| | |||||
* | Rename crate to `markdown` | Titus Wormer | 2022-10-13 | 8 | -13/+13 |
| | |||||
* | Add internals to compile JSX away (wip) | Titus Wormer | 2022-10-12 | 3 | -1/+223 |
| | |||||
* | Refactor some internals to accept mutable references | Titus Wormer | 2022-10-11 | 2 | -7/+5 |
| | |||||
* | Refactor test utilities to improve names | Titus Wormer | 2022-10-11 | 9 | -157/+221 |
| | |||||
* | Refactor to use a bunch of `into` | Titus Wormer | 2022-10-11 | 2 | -13/+9 |
| | |||||
* | Refactor some hidden internals | Titus Wormer | 2022-10-11 | 2 | -8/+8 |
| | |||||
* | Add support for proper positional info in swc tree | Titus Wormer | 2022-10-11 | 9 | -248/+565 |
| | | | | | | | | | | * Fix some positional info in SWC error messages * Add positional info in `to_document` on duplicate layouts * Add support for `path` on `Program` (`to_swc`, `to_document`, `jsx_rewrite`), for the path of a file on disk * Add support for `development` to `jsx-rewrite`, which when defined will embed info on where tags were written into the runtime code when they are not passed * Refactor to move some utilities to `micromark_swc_utils.rs`, `swc_utils.rs` | ||||
* | Refactor to improve `to_hast` internals | Titus Wormer | 2022-10-06 | 2 | -828/+624 |
| | |||||
* | Refactor to share identifier methods | Titus Wormer | 2022-10-06 | 1 | -15/+5 |
| | |||||
* | Add support for form feeds as html whitespace | Titus Wormer | 2022-10-05 | 1 | -2/+1 |
| | |||||
* | Add support for rewriting JSX | Titus Wormer | 2022-10-05 | 4 | -2/+1194 |
| | |||||
* | Refactor to share a test utility | Titus Wormer | 2022-10-04 | 3 | -27/+64 |
| | |||||
* | Add support for creating a component, using layout | Titus Wormer | 2022-10-03 | 3 | -2/+653 |
| | |||||
* | Add support for turning hast into swc | Titus Wormer | 2022-09-30 | 5 | -51/+836 |
| | |||||
* | Add note on future idea | Titus Wormer | 2022-09-29 | 1 | -0/+4 |
| | |||||
* | Add support for turning mdast to hast | Titus Wormer | 2022-09-28 | 4 | -245/+1986 |
| | |||||
* | Add support for parsing MDX ESM, expressions | Titus Wormer | 2022-09-19 | 1 | -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). |