Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2022-07-28 | Refactor to work on `char`s | Titus Wormer | 1 | -57/+0 | |
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-21 | Refactor to move `index` field to `point` | Titus Wormer | 1 | -2/+2 | |
2022-07-14 | Add support for container state | Titus Wormer | 1 | -2/+2 | |
* Fix to parse list item continuation based on how big the initial list item prefix was * Fix list items that start with blank lines | |||||
2022-07-05 | Refactor code style | Titus Wormer | 1 | -56/+1 | |
2022-06-16 | Add support for hard break (trailing) | Titus Wormer | 1 | -1/+1 | |
2022-06-14 | Reorganize to split util | Titus Wormer | 1 | -0/+112 | |