aboutsummaryrefslogtreecommitdiffstats
path: root/src/content (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-06-14Fix support for deep subtokenizationLibravatar Titus Wormer1-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
2022-06-14Reorganize to split utilLibravatar Titus Wormer1-2/+2
2022-06-14Add docs for html (text)Libravatar Titus Wormer1-1/+1
2022-06-13Add basic html (text)Libravatar Titus Wormer2-9/+22
* 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 😅
2022-06-13Add autolinksLibravatar Titus Wormer1-4/+5
2022-06-10Add text content typeLibravatar Titus Wormer4-13/+92
* Add character reference and character escapes in text * Add recursive subtokenization
2022-06-10Add proper support for subtokenizationLibravatar Titus Wormer4-55/+118
- Add “content” content type - Add paragraph - Add skips - Add linked tokens
2022-06-09Add basic subtokenization, string content in fenced codeLibravatar Titus Wormer2-33/+10
2022-06-09Refactor to pass more slices aroundLibravatar Titus Wormer2-2/+2
2022-06-09Add support for indented lines in paragraphsLibravatar Titus Wormer1-23/+20
2022-06-09Add basic support for interrupting contentLibravatar Titus Wormer1-69/+95