aboutsummaryrefslogtreecommitdiffstats
path: root/src/construct/attention.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Refactor to move `content` to `construct`Libravatar Titus Wormer2022-08-151-1/+1
|
* Remove `match` statements if clumsyLibravatar Titus Wormer2022-08-121-24/+29
|
* Refactor to improve docs of each functionLibravatar Titus Wormer2022-08-121-205/+183
|
* Refactor to move `space_or_tab_eol` to own fileLibravatar Titus Wormer2022-08-111-7/+7
|
* Remove boxes around resolversLibravatar Titus Wormer2022-08-111-2/+3
|
* Refactor to move some code to `event.rs`Libravatar Titus Wormer2022-08-111-43/+43
|
* Refactor to move some code to `state.rs`Libravatar Titus Wormer2022-08-111-3/+4
|
* Add `State::Retry`Libravatar Titus Wormer2022-08-101-1/+1
|
* Rename `State::Fn` to `State::Next`Libravatar Titus Wormer2022-08-101-1/+1
|
* Rewrite algorithm to not pass around boxed functionsLibravatar Titus Wormer2022-08-091-3/+3
| | | | | | * Pass state names from an enum around instead of boxed functions * Refactor to simplify attempts a lot * Use a subtokenizer for the the `document` content type
* Refactor to remove most closuresLibravatar Titus Wormer2022-08-021-4/+6
|
* Refactor to improve statesLibravatar Titus Wormer2022-07-291-67/+21
| | | | | | | | | | | | * Remove custom kind wrappers, use plain bytes instead * Remove `Into`s, use the explicit expected types instead * Refactor to use `slice.as_str` in most places * Remove unneeded unique check before adding a definition * Use a shared CDATA prefix in constants * Inline byte checks into matches * Pass bytes back from parser instead of whole parse state * Refactor to work more often on bytes * Rename custom `size` to `len`
* Refactor to work on bytes (`u8`)Libravatar Titus Wormer2022-07-291-27/+39
|
* Refactor to work on `char`sLibravatar Titus Wormer2022-07-281-42/+33
| | | | | | | | | | | | | | | 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-7/+7
|
* Remove no longer needed field in `State::Ok`Libravatar Titus Wormer2022-07-251-1/+1
|
* Improve performance w/ a single feed loopLibravatar Titus Wormer2022-07-251-1/+1
|
* Refactor to use a single shared edit mapLibravatar Titus Wormer2022-07-221-8/+6
|
* Refactor to remove unneeded tuples in every statesLibravatar Titus Wormer2022-07-221-7/+7
|
* Refactor to pass ints instead of vecs aroundLibravatar Titus Wormer2022-07-221-3/+3
|
* Refactor to move `index` field to `point`Libravatar Titus Wormer2022-07-211-44/+22
|
* Refactor to move some event fields to `link`Libravatar Titus Wormer2022-07-211-24/+8
|
* Refactor to share edit mapLibravatar Titus Wormer2022-07-201-7/+7
|
* Refactor to use less vecs for eventsLibravatar Titus Wormer2022-07-201-2/+2
|
* Refactor to remove cloning in `edit_map`Libravatar Titus Wormer2022-07-191-1/+1
|
* Add support for turning off constructsLibravatar Titus Wormer2022-07-181-1/+1
|
* Refactor to organize resolversLibravatar Titus Wormer2022-07-181-2/+2
|
* Refactor examples of statesLibravatar Titus Wormer2022-07-181-2/+4
|
* Refactor to move token types to `token`Libravatar Titus Wormer2022-07-071-29/+30
|
* Remove debugging from attentionLibravatar Titus Wormer2022-07-071-41/+1
|
* Fix misnested attentionLibravatar Titus Wormer2022-07-051-0/+19
|
* Fix interleaving of attention/labelLibravatar Titus Wormer2022-07-051-44/+54
|
* Fix resizing attention bugLibravatar Titus Wormer2022-07-051-1/+2
|
* Refactor code styleLibravatar Titus Wormer2022-07-051-4/+20
|
* Add docs to attentionLibravatar Titus Wormer2022-07-051-66/+180
|
* Add support for unicode punctuationLibravatar Titus Wormer2022-07-041-4/+2
|
* Fix opening/closing tag order of nested attentionLibravatar Titus Wormer2022-07-041-1/+1
|
* Fix some attention bugsLibravatar Titus Wormer2022-07-041-4/+33
| | | | | | * Fix closing many attention from one closer * Fix nested attention * Fix remaining attention markers
* Add support for attention (emphasis, strong)Libravatar Titus Wormer2022-07-041-0/+401