aboutsummaryrefslogtreecommitdiffstats
path: root/src/util/span.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Refactor to work on `char`sLibravatar Titus Wormer2022-07-281-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`Libravatar Titus Wormer2022-07-211-2/+2
|
* Add support for container stateLibravatar Titus Wormer2022-07-141-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 styleLibravatar Titus Wormer2022-07-051-56/+1
|
* Add support for hard break (trailing)Libravatar Titus Wormer2022-06-161-1/+1
|
* Reorganize to split utilLibravatar Titus Wormer2022-06-141-0/+112