aboutsummaryrefslogtreecommitdiffstats
path: root/src/content/text.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fix support for deep subtokenizationLibravatar Titus Wormer2022-06-141-7/+14
| | | | | | * Fix a couple of forgotten line ending handling in html (text) * Fix missing initial case for html (text) not having a `<` 😬 * Add line ending handling to `text` construct
* Add docs for html (text)Libravatar Titus Wormer2022-06-141-1/+1
|
* Add basic html (text)Libravatar Titus Wormer2022-06-131-5/+9
| | | | | | | * Add all states for html (text) * Fix to link paragraph tokens together * Add note about uncovered bug where linking paragraph tokens together doesn’t work 😅
* Add autolinksLibravatar Titus Wormer2022-06-131-4/+5
|
* Add text content typeLibravatar Titus Wormer2022-06-101-0/+80
* Add character reference and character escapes in text * Add recursive subtokenization