aboutsummaryrefslogtreecommitdiffstats
path: root/src/construct/attention.rs (follow)
Commit message (Expand)AuthorAgeFilesLines
* Fix attention starting and ending in different linksLibravatar Titus Wormer2022-10-291-11/+12
* Remove some unused code around slicesLibravatar Titus Wormer2022-10-141-9/+4
* Add some missing internal docsLibravatar Titus Wormer2022-10-111-1/+1
* Add support for turning mdast to hastLibravatar Titus Wormer2022-09-281-3/+2
* Fix to prefer flow over definitions, setext headingsLibravatar Titus Wormer2022-09-141-1/+5
* Refactor to move byte, char info to own fileLibravatar Titus Wormer2022-09-091-2/+7
* Add support for getting `char`s from bytesLibravatar Titus Wormer2022-09-051-21/+10
* Add support for GFM strikethroughLibravatar Titus Wormer2022-08-221-81/+125
* Add support for GFM autolink literalsLibravatar Titus Wormer2022-08-181-67/+3
* Add `no_std + alloc`Libravatar Titus Wormer2022-08-161-0/+1
* Refactor to proof docs, grammarsLibravatar Titus Wormer2022-08-151-12/+19
* 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
* Refactor to remove most closuresLibravatar Titus Wormer2022-08-021-4/+6
* Refactor to improve statesLibravatar Titus Wormer2022-07-291-67/+21
* 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
* 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
* Add support for attention (emphasis, strong)Libravatar Titus Wormer2022-07-041-0/+401