Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove unneeded `extern crate`s | 2022-11-10 | 1 | -1/+0 | |
| | | | | | Closes GH-28. Co-authored-by: Bernhard Berger <bernhardberger3456@gmail.com> | ||||
* | Refactor to use default trait in tests | 2022-10-14 | 1 | -9/+9 | |
| | |||||
* | Rename crate to `markdown` | 2022-10-13 | 1 | -30/+30 | |
| | |||||
* | Refactor to use a bunch of `into` | 2022-10-11 | 1 | -3/+3 | |
| | |||||
* | Refactor to split parse from compile options | 2022-10-06 | 1 | -18/+29 | |
| | |||||
* | Add support for turning mdast to hast | 2022-09-28 | 1 | -2/+4 | |
| | |||||
* | Add support for compiling to mdast | 2022-09-26 | 1 | -1/+29 | |
| | | | | See: <https://github.com/syntax-tree/mdast>. | ||||
* | Add support for parsing MDX ESM, expressions | 2022-09-19 | 1 | -2/+12 | |
| | | | | | | | | | | | | | | | | 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 recoverable syntax errors | 2022-09-07 | 1 | -26/+28 | |
| | |||||
* | Add support for math (flow) | 2022-08-26 | 1 | -30/+24 | |
| | |||||
* | Add support for math (text) | 2022-08-26 | 1 | -0/+190 | |