aboutsummaryrefslogtreecommitdiffstats
path: root/src/compiler.rs (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-06-21Add docs for `default_line_ending`Libravatar Titus Wormer1-1/+41
2022-06-21Add support for passing token types to destination, label, titleLibravatar Titus Wormer1-2/+2
2022-06-21Refactor to move protocols to constantsLibravatar Titus Wormer1-6/+2
2022-06-21Refactor to improve a bunch of statesLibravatar Titus Wormer1-26/+32
* Improve passing stuff around * Add traits to enums for markers and such * Fix “life time” stuff I didn’t understand
2022-06-21Add support for inferring line ending, configurableLibravatar Titus Wormer1-16/+73
* Rename `CompileOptions` to `Options` * Add support for an optional default line ending style * Add support for inferring the used line ending style
2022-06-20Add improved whitespace handlingLibravatar Titus Wormer1-9/+1
* 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-2/+0
2022-06-17Add support for definitionsLibravatar Titus Wormer1-0/+29
* Add definitions * Add partials for label, destination, title * Add `go`, to attempt something, and do something else on `ok`
2022-06-16Add heading (setext)Libravatar Titus Wormer1-55/+71
2022-06-16Refactor to reorder thing alphabeticallyLibravatar Titus Wormer1-167/+168
2022-06-16Add support for hard break (trailing)Libravatar Titus Wormer1-1/+4
2022-06-16Add support for hard break escapeLibravatar Titus Wormer1-0/+6
2022-06-15Add support for text in heading (atx)Libravatar Titus Wormer1-4/+6
2022-06-15Add code (text)Libravatar Titus Wormer1-7/+35
2022-06-15Add tests for character referenceLibravatar Titus Wormer1-1/+1
* Fix encoding of character references * Fix unneeded remainder in `nok` state
2022-06-14Add examples to some docsLibravatar Titus Wormer1-0/+48
2022-06-14Reorganize to split utilLibravatar Titus Wormer1-20/+24
2022-06-13Add basic html (text)Libravatar Titus Wormer1-2/+8
* 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 support for sanitizing urlsLibravatar Titus Wormer1-9/+25
* Add support for properly encoding characters in urls * Add support for sanitizing potentially dangerous urls * Add safe defaults, optionally live dangerously
2022-06-13Add autolinksLibravatar Titus Wormer1-2/+28
2022-06-10Add text content typeLibravatar Titus Wormer1-3/+1
* Add character reference and character escapes in text * Add recursive subtokenization
2022-06-10Add proper support for subtokenizationLibravatar Titus Wormer1-15/+8
- Add “content” content type - Add paragraph - Add skips - Add linked tokens
2022-06-09Add temporary support for stripping whitespaceLibravatar Titus Wormer1-4/+8
2022-06-09Add basic support for interrupting contentLibravatar Titus Wormer1-2/+2