aboutsummaryrefslogtreecommitdiffstats
path: root/src/construct/html_text.rs (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-07-18Add support for turning off constructsLibravatar Titus Wormer1-1/+1
2022-07-18Refactor examples of statesLibravatar Titus Wormer1-63/+77
2022-07-07Refactor to move token types to `token`Libravatar Titus Wormer1-11/+12
2022-07-05Refactor code styleLibravatar Titus Wormer1-43/+37
2022-06-22Add `attempt_opt` to tokenizerLibravatar Titus Wormer1-2/+2
2022-06-22Add docs for token typesLibravatar Titus Wormer1-0/+5
2022-06-21Refactor to improve a bunch of statesLibravatar Titus Wormer1-12/+8
* Improve passing stuff around * Add traits to enums for markers and such * Fix “life time” stuff I didn’t understand
2022-06-20Add improved whitespace handlingLibravatar Titus Wormer1-5/+4
* add several helpers for parsing betwen x and y `space_or_tab`s * use those helpers in a bunch of places * move initial indent parsing to flow constructs themselves
2022-06-20Remove unneeded `content` content typeLibravatar Titus Wormer1-3/+3
2022-06-20Remove unneeded `pub` keywordsLibravatar Titus Wormer1-32/+29
2022-06-14Fix support for deep subtokenizationLibravatar Titus Wormer1-10/+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
2022-06-14Add docs for html (text)Libravatar Titus Wormer1-55/+272
2022-06-13Add basic html (text)Libravatar Titus Wormer1-0/+480
* 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 😅