aboutsummaryrefslogtreecommitdiffstats
path: root/src/util/span.rs (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-07-28Refactor to work on `char`sLibravatar Titus Wormer1-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-21Refactor to move `index` field to `point`Libravatar Titus Wormer1-2/+2
2022-07-14Add support for container stateLibravatar Titus Wormer1-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-05Refactor code styleLibravatar Titus Wormer1-56/+1
2022-06-16Add support for hard break (trailing)Libravatar Titus Wormer1-1/+1
2022-06-14Reorganize to split utilLibravatar Titus Wormer1-0/+112