Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Refactor to work on `char`s | Titus Wormer | 2022-07-28 | 1 | -1/+13 |
| | | | | | | | | | | | | | | | 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 drastically improve perf around whitespace | Titus Wormer | 2022-07-26 | 1 | -43/+5 |
| | |||||
* | Remove unneeded token | Titus Wormer | 2022-07-18 | 1 | -22/+2 |
| | |||||
* | Fix token that should be void | Titus Wormer | 2022-07-18 | 1 | -0/+44 |
| | |||||
* | Remove unneeded token | Titus Wormer | 2022-07-15 | 1 | -20/+1 |
| | |||||
* | Refactor to sort, document lists in token | Titus Wormer | 2022-07-15 | 1 | -9/+130 |
| | |||||
* | Fix a lot of list things | Titus Wormer | 2022-07-12 | 1 | -1/+3 |
| | | | | | | | | * Add `ListItem`, `ListOrdered`, and `ListUnordered` tokens * Add support for multiline list items * Add support for tight lists * Fix bug where 10 digit long list item values worked * Fix skip bug when skipping over nested events | ||||
* | Add initial support for lists | Titus Wormer | 2022-07-12 | 1 | -0/+7 |
| | |||||
* | Refactor to move token types to `token` | Titus Wormer | 2022-07-07 | 1 | -0/+1768 |