aboutsummaryrefslogtreecommitdiffstats
path: root/src/util/edit_map.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Use `edit_map` in `subtokenize`Libravatar Titus Wormer2022-07-191-14/+1
|
* Remove another unneeded `HashMap`Libravatar Titus Wormer2022-07-191-40/+38
|
* Add basic support for block quotesLibravatar Titus Wormer2022-07-071-0/+1
|
* Fix shifting jumps in tail of edit mapLibravatar Titus Wormer2022-07-071-1/+3
|
* Refactor to do some to dosLibravatar Titus Wormer2022-07-051-2/+4
|
* Add support for unicode punctuationLibravatar Titus Wormer2022-07-041-1/+1
|
* Update list of todosLibravatar Titus Wormer2022-07-041-2/+1
|
* Fix opening/closing tag order of nested attentionLibravatar Titus Wormer2022-07-041-12/+29
|
* Refactor to clean and document `edit_map`Libravatar Titus Wormer2022-07-011-2/+19
|
* Add support for sharing identifiers, references before definitionsLibravatar Titus Wormer2022-06-291-18/+1
|
* Fix jumps in `edit_map`Libravatar Titus Wormer2022-06-281-0/+144
* Use resolve more often (e.g., heading (atx, setext)) * Fix to link whole phrasing (e.g., one big chunk of text in heading (atx, setext), titles, labels) * Replace `ChunkText`, `ChunkString`, with `event.content_type: Option<ContentType>` * Refactor to externalize `edit_map` from `label`