aboutsummaryrefslogtreecommitdiffstats
path: root/tests/math_text.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Rename crate to `markdown`Libravatar Titus Wormer2022-10-131-30/+30
|
* Refactor to use a bunch of `into`Libravatar Titus Wormer2022-10-111-3/+3
|
* Refactor to split parse from compile optionsLibravatar Titus Wormer2022-10-061-18/+29
|
* Add support for turning mdast to hastLibravatar Titus Wormer2022-09-281-2/+4
|
* Add support for compiling to mdastLibravatar Titus Wormer2022-09-261-1/+29
| | | | See: <https://github.com/syntax-tree/mdast>.
* Add support for parsing MDX ESM, expressionsLibravatar Titus Wormer2022-09-191-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 errorsLibravatar Titus Wormer2022-09-071-26/+28
|
* Add support for math (flow)Libravatar Titus Wormer2022-08-261-30/+24
|
* Add support for math (text)Libravatar Titus Wormer2022-08-261-0/+190