Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Refactor to improve some module docs | Titus Wormer | 2022-10-12 | 1 | -1/+1 |
| | |||||
* | Add support for GFM strikethrough | Titus Wormer | 2022-08-22 | 1 | -2/+2 |
| | |||||
* | Refactor to move more things to `util/` | Titus Wormer | 2022-08-19 | 1 | -1/+1 |
| | |||||
* | Refactor to proof docs, grammars | Titus Wormer | 2022-08-15 | 1 | -5/+18 |
| | |||||
* | Refactor to move `content` to `construct` | Titus Wormer | 2022-08-15 | 1 | -1/+1 |
| | |||||
* | Refactor to attempt less if never needed | Titus Wormer | 2022-08-12 | 1 | -10/+14 |
| | |||||
* | Refactor to improve docs of each function | Titus Wormer | 2022-08-12 | 1 | -27/+7 |
| | |||||
* | Refactor attempts to remove unneeded state name | Titus Wormer | 2022-08-11 | 1 | -10/+6 |
| | |||||
* | Refactor to move `space_or_tab_eol` to own file | Titus Wormer | 2022-08-11 | 1 | -4/+4 |
| | |||||
* | Refactor to move some code to `event.rs` | Titus Wormer | 2022-08-11 | 1 | -14/+18 |
| | |||||
* | Refactor to move some code to `state.rs` | Titus Wormer | 2022-08-11 | 1 | -10/+7 |
| | |||||
* | Add `State::Retry` | Titus Wormer | 2022-08-10 | 1 | -2/+2 |
| | |||||
* | Rename `State::Fn` to `State::Next` | Titus Wormer | 2022-08-10 | 1 | -10/+6 |
| | |||||
* | Add support for passing `ok`, `nok` as separate states to attempts | Titus Wormer | 2022-08-09 | 1 | -2/+10 |
| | |||||
* | Rewrite algorithm to not pass around boxed functions | Titus Wormer | 2022-08-09 | 1 | -23/+29 |
| | | | | | | * Pass state names from an enum around instead of boxed functions * Refactor to simplify attempts a lot * Use a subtokenizer for the the `document` content type | ||||
* | Refactor to work on bytes (`u8`) | Titus Wormer | 2022-07-29 | 1 | -3/+3 |
| | |||||
* | Refactor to work on `char`s | Titus Wormer | 2022-07-28 | 1 | -15/+12 |
| | | | | | | | | | | | | | | | 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. | ||||
* | Refactor to not pass codes around | Titus Wormer | 2022-07-25 | 1 | -14/+14 |
| | |||||
* | Remove no longer needed field in `State::Ok` | Titus Wormer | 2022-07-25 | 1 | -2/+2 |
| | |||||
* | Improve performance w/ a single feed loop | Titus Wormer | 2022-07-25 | 1 | -1/+1 |
| | |||||
* | Refactor to remove unneeded tuples in every states | Titus Wormer | 2022-07-22 | 1 | -11/+11 |
| | |||||
* | Refactor to pass ints instead of vecs around | Titus Wormer | 2022-07-22 | 1 | -5/+5 |
| | |||||
* | Add support for turning off constructs | Titus Wormer | 2022-07-18 | 1 | -4/+16 |
| | |||||
* | Refactor examples of states | Titus Wormer | 2022-07-18 | 1 | -8/+14 |
| | |||||
* | Add docs and refactor list | Titus Wormer | 2022-07-15 | 1 | -5/+0 |
| | |||||
* | Remove unneeded token | Titus Wormer | 2022-07-15 | 1 | -3/+3 |
| | |||||
* | Refactor to move token types to `token` | Titus Wormer | 2022-07-07 | 1 | -15/+16 |
| | |||||
* | Add docs for block quote tokens | Titus Wormer | 2022-07-07 | 1 | -4/+4 |
| | |||||
* | Add docs to block quote | Titus Wormer | 2022-07-07 | 1 | -1/+63 |
| | |||||
* | Add basic support for block quotes | Titus Wormer | 2022-07-07 | 1 | -0/+58 |