Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Refactor to work on `char`s | Titus Wormer | 2022-07-28 | 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. | ||||
* | Refactor to move `index` field to `point` | Titus Wormer | 2022-07-21 | 1 | -2/+2 |
| | |||||
* | Add support for container state | Titus Wormer | 2022-07-14 | 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 | ||||
* | Refactor code style | Titus Wormer | 2022-07-05 | 1 | -56/+1 |
| | |||||
* | Add support for hard break (trailing) | Titus Wormer | 2022-06-16 | 1 | -1/+1 |
| | |||||
* | Reorganize to split util | Titus Wormer | 2022-06-14 | 1 | -0/+112 |