aboutsummaryrefslogtreecommitdiffstats
path: root/tests/html_text.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Add support for inferring line ending, configurableLibravatar Titus Wormer2022-06-211-2/+3
| | | | | | * Rename `CompileOptions` to `Options` * Add support for an optional default line ending style * Add support for inferring the used line ending style
* Fix support for deep subtokenizationLibravatar Titus Wormer2022-06-141-58/+50
| | | | | | * 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 basic html (text)Libravatar Titus Wormer2022-06-131-0/+434
* 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 😅