Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2023-04-27 | Rename `json` feature to `serde` | 1 | -2/+2 | ||
Closes GH-59. Reviewed-by: Titus Wormer <tituswormer@gmail.com> | |||||
2023-02-10 | Add `log` feature, document features | 1 | -0/+11 | ||
2022-10-14 | Remove core tests, which tarpaulin doesn’t understand | 1 | -35/+0 | ||
2022-10-14 | Refactor to move options to separate file | 1 | -1422/+8 | ||
2022-10-14 | Remove `must_use` if tarpaulin doesn’t understand them | 1 | -254/+13 | ||
Also moves some code to separate files, in the hopes that tarpaulin understands them. | |||||
2022-10-14 | Refactor to attempt to fix some coverage bugs | 1 | -1/+6 | ||
2022-10-14 | Add some tests for mdx parse types, `must_use` | 1 | -0/+60 | ||
2022-10-14 | Add some unit tests for core api | 1 | -10/+198 | ||
2022-10-14 | Add some tests for line endings | 1 | -4/+56 | ||
2022-10-14 | Add some more tests on mdx and indented code | 1 | -0/+6 | ||
2022-10-13 | Add logo to crate docs | 1 | -3/+4 | ||
2022-10-13 | Rename crate to `markdown` | 1 | -83/+85 | ||
2022-10-12 | Add note about crate logo | 1 | -0/+3 | ||
2022-10-11 | Refactor some hidden internals | 1 | -25/+9 | ||
2022-10-11 | Add improved docs to public api | 1 | -102/+330 | ||
2022-10-11 | Add support for proper positional info in swc tree | 1 | -4/+7 | ||
* 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` | |||||
2022-10-06 | Refactor to split parse from compile options | 1 | -172/+263 | ||
2022-10-06 | Refactor to share identifier methods | 1 | -1/+16 | ||
2022-09-29 | Add inline clippy config | 1 | -0/+3 | ||
2022-09-28 | Add support for turning mdast to hast | 1 | -2/+10 | ||
2022-09-26 | Add support for compiling to mdast | 1 | -14/+16 | ||
See: <https://github.com/syntax-tree/mdast>. | |||||
2022-09-19 | Add structs, enums for `mdast` | 1 | -8/+37 | ||
2022-09-19 | Add support for parsing MDX ESM, expressions | 1 | -2/+178 | ||
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-12 | Fix whitespace in GFM footnote definition identifiers | 1 | -10/+10 | ||
* Fix a crash on line endings in footnote definitions * Fix to match spaces and tabs in identifiers to `cmark-gfm` * Fix order of one attribute | |||||
2022-09-09 | Add mdx expression (flow, text) | 1 | -0/+18 | ||
2022-09-08 | Add support for mdx jsx (flow) | 1 | -0/+9 | ||
2022-09-07 | Add support for recoverable syntax errors | 1 | -29/+74 | ||
2022-09-06 | Add initial states for MDX JSX (text) | 1 | -0/+29 | ||
2022-09-01 | Add support for GFM tagfilter | 1 | -0/+47 | ||
2022-08-31 | Add support for GFM tables | 1 | -0/+13 | ||
2022-08-26 | Add support for math (flow) | 1 | -1/+13 | ||
2022-08-26 | Add support for math (text) | 1 | -45/+99 | ||
2022-08-25 | Add support for GFM footnotes | 1 | -16/+238 | ||
2022-08-22 | Add support for GFM task list item | 1 | -0/+9 | ||
2022-08-22 | Add support for GFM strikethrough | 1 | -1/+60 | ||
2022-08-19 | Refactor to move more things to `util/` | 1 | -2/+0 | ||
2022-08-18 | Add support for GFM autolink literals | 1 | -0/+21 | ||
2022-08-16 | Add `no_std + alloc` | 1 | -0/+5 | ||
2022-08-16 | Add support for frontmatter | 1 | -0/+12 | ||
2022-08-15 | Add derive of `Eq` where possible | 1 | -1/+1 | ||
2022-08-15 | Refactor to move `content` to `construct` | 1 | -1/+0 | ||
2022-08-15 | Refactor to rename list construct to list item | 1 | -3/+3 | ||
2022-08-12 | Refactor to improve docs of each function | 1 | -1/+1 | ||
2022-08-11 | Remove boxes around resolvers | 1 | -0/+1 | ||
2022-08-11 | Refactor to move some code to `event.rs` | 1 | -1/+1 | ||
2022-08-11 | Refactor to move some code to `state.rs` | 1 | -0/+1 | ||
2022-07-29 | Refactor to improve states | 1 | -2/+2 | ||
* Remove custom kind wrappers, use plain bytes instead * Remove `Into`s, use the explicit expected types instead * Refactor to use `slice.as_str` in most places * Remove unneeded unique check before adding a definition * Use a shared CDATA prefix in constants * Inline byte checks into matches * Pass bytes back from parser instead of whole parse state * Refactor to work more often on bytes * Rename custom `size` to `len` | |||||
2022-07-29 | Refactor to work on bytes (`u8`) | 1 | -1/+1 | ||
2022-07-28 | Refactor to work on `char`s | 1 | -8/+7 | ||
Previously, a custom char implementation was used. This was easier to work with, as sometimes “virtual” characters are injected, or characters are ignored. This replaces that with working on actual `char`s. In the hope of in the future working on `u8`s, even. This simplifies the state machine somewhat, as only `\n` is fed, regardless of whether it was a CRLF, CR, or LF. It also feeds `' '` instead of virtual spaces. The BOM, if present, is now available as a `ByteOrderMark` event. | |||||
2022-07-19 | Remove unneeded `rust` language flags | 1 | -6/+6 | ||