aboutsummaryrefslogtreecommitdiffstats
path: root/src/construct/block_quote.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Refactor to work on bytes (`u8`)Libravatar Titus Wormer2022-07-291-3/+3
|
* Refactor to work on `char`sLibravatar Titus Wormer2022-07-281-15/+12
| | | | | | | | | | | | | | | 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 not pass codes aroundLibravatar Titus Wormer2022-07-251-14/+14
|
* Remove no longer needed field in `State::Ok`Libravatar Titus Wormer2022-07-251-2/+2
|
* Improve performance w/ a single feed loopLibravatar Titus Wormer2022-07-251-1/+1
|
* Refactor to remove unneeded tuples in every statesLibravatar Titus Wormer2022-07-221-11/+11
|
* Refactor to pass ints instead of vecs aroundLibravatar Titus Wormer2022-07-221-5/+5
|
* Add support for turning off constructsLibravatar Titus Wormer2022-07-181-4/+16
|
* Refactor examples of statesLibravatar Titus Wormer2022-07-181-8/+14
|
* Add docs and refactor listLibravatar Titus Wormer2022-07-151-5/+0
|
* Remove unneeded tokenLibravatar Titus Wormer2022-07-151-3/+3
|
* Refactor to move token types to `token`Libravatar Titus Wormer2022-07-071-15/+16
|
* Add docs for block quote tokensLibravatar Titus Wormer2022-07-071-4/+4
|
* Add docs to block quoteLibravatar Titus Wormer2022-07-071-1/+63
|
* Add basic support for block quotesLibravatar Titus Wormer2022-07-071-0/+58