Commit message (Expand) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Add support for GFM tagfilter | Titus Wormer | 2022-09-01 | 2 | -2/+2 | |
* | Add support for GFM tables | Titus Wormer | 2022-08-31 | 8 | -29/+1077 | |
* | Add support for math (flow) | Titus Wormer | 2022-08-26 | 6 | -106/+205 | |
* | Add support for math (text) | Titus Wormer | 2022-08-26 | 8 | -239/+301 | |
* | Add support for GFM footnotes | Titus Wormer | 2022-08-25 | 11 | -104/+717 | |
* | Fix lazy paragraph after definition | Titus Wormer | 2022-08-22 | 2 | -10/+60 | |
* | Add support for GFM task list item | Titus Wormer | 2022-08-22 | 3 | -1/+167 | |
* | Add support for GFM strikethrough | Titus Wormer | 2022-08-22 | 21 | -112/+169 | |
* | Refactor to move more things to `util/` | Titus Wormer | 2022-08-19 | 15 | -32/+37 | |
* | Add support for GFM autolink literals | Titus Wormer | 2022-08-18 | 6 | -75/+407 | |
* | Add `no_std + alloc` | Titus Wormer | 2022-08-16 | 9 | -0/+9 | |
* | Add support for frontmatter | Titus Wormer | 2022-08-16 | 6 | -16/+327 | |
* | Update some last docs, bnf grammars | Titus Wormer | 2022-08-16 | 17 | -111/+226 | |
* | Refactor to proof docs, grammars | Titus Wormer | 2022-08-15 | 21 | -241/+419 | |
* | Refactor to move `content` to `construct` | Titus Wormer | 2022-08-15 | 32 | -38/+1037 | |
* | Refactor to rename list construct to list item | Titus Wormer | 2022-08-15 | 4 | -27/+27 | |
* | Refactor paragraph, data resolvers | Titus Wormer | 2022-08-15 | 2 | -44/+50 | |
* | Refactor to solve some clippy issues | Titus Wormer | 2022-08-15 | 1 | -51/+50 | |
* | Refactor to attempt less if never needed | Titus Wormer | 2022-08-12 | 14 | -293/+367 | |
* | Refactor to improve entering | Titus Wormer | 2022-08-12 | 9 | -58/+113 | |
* | Refactor to improve some names | Titus Wormer | 2022-08-12 | 3 | -15/+15 | |
* | Remove unneeded state | Titus Wormer | 2022-08-12 | 1 | -21/+4 | |
* | Remove `match` statements if clumsy | Titus Wormer | 2022-08-12 | 18 | -410/+368 | |
* | Refactor to improve docs of each function | Titus Wormer | 2022-08-12 | 28 | -440/+420 | |
* | Refactor attempts to remove unneeded state name | Titus Wormer | 2022-08-11 | 15 | -270/+236 | |
* | Refactor to handle definitions when parsing | Titus Wormer | 2022-08-11 | 1 | -3/+34 | |
* | Remove unneeded `balance` info on label starts | Titus Wormer | 2022-08-11 | 3 | -43/+10 | |
* | Refactor to move `space_or_tab_eol` to own file | Titus Wormer | 2022-08-11 | 28 | -276/+292 | |
* | Remove boxes around resolvers | Titus Wormer | 2022-08-11 | 9 | -16/+22 | |
* | Refactor to move some code to `event.rs` | Titus Wormer | 2022-08-11 | 29 | -859/+878 | |
* | Refactor to move some code to `state.rs` | Titus Wormer | 2022-08-11 | 28 | -462/+468 | |
* | Refactor internal docs, code style of tokenizer | Titus Wormer | 2022-08-11 | 12 | -90/+133 | |
* | Refactor some code for document parsing | Titus Wormer | 2022-08-10 | 1 | -3/+7 | |
* | Add `State::Retry` | Titus Wormer | 2022-08-10 | 21 | -186/+152 | |
* | Rename `State::Fn` to `State::Next` | Titus Wormer | 2022-08-10 | 27 | -324/+309 | |
* | Add support for passing `ok`, `nok` as separate states to attempts | Titus Wormer | 2022-08-09 | 15 | -168/+265 | |
* | Rewrite algorithm to not pass around boxed functions | Titus Wormer | 2022-08-09 | 27 | -688/+795 | |
* | Refactor to remove most closures | Titus Wormer | 2022-08-02 | 21 | -990/+979 | |
* | Fix bug on empty heading (atx) | Titus Wormer | 2022-08-01 | 1 | -29/+31 | |
* | Add missing docs, refactor some code | Titus Wormer | 2022-08-01 | 3 | -8/+21 | |
* | Refactor some states | Titus Wormer | 2022-08-01 | 6 | -28/+32 | |
* | Refactor to improve states | Titus Wormer | 2022-07-29 | 23 | -907/+522 | |
* | Refactor to work on bytes (`u8`) | Titus Wormer | 2022-07-29 | 30 | -386/+450 | |
* | Refactor to use `debug_assert` | Titus Wormer | 2022-07-28 | 1 | -1/+0 | |
* | Refactor to work on `char`s | Titus Wormer | 2022-07-28 | 28 | -614/+540 | |
* | Refactor to drastically improve perf around whitespace | Titus Wormer | 2022-07-26 | 6 | -136/+195 | |
* | Refactor to not pass codes around | Titus Wormer | 2022-07-25 | 29 | -896/+861 | |
* | Remove no longer needed field in `State::Ok` | Titus Wormer | 2022-07-25 | 29 | -44/+44 | |
* | Improve performance w/ a single feed loop | Titus Wormer | 2022-07-25 | 21 | -45/+41 | |
* | Refactor to use a single shared edit map | Titus Wormer | 2022-07-22 | 7 | -52/+34 |