Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Refactor to use a bunch of `into` | Titus Wormer | 2022-10-11 | 1 | -7/+7 |
| | |||||
* | Refactor to split parse from compile options | Titus Wormer | 2022-10-06 | 1 | -7/+13 |
| | |||||
* | Add support for turning mdast to hast | Titus Wormer | 2022-09-28 | 1 | -2/+4 |
| | |||||
* | Add support for compiling to mdast | Titus Wormer | 2022-09-26 | 1 | -1/+50 |
| | | | | See: <https://github.com/syntax-tree/mdast>. | ||||
* | Add support for recoverable syntax errors | Titus Wormer | 2022-09-07 | 1 | -23/+22 |
| | |||||
* | Add `pretty_assertions` to tests for diffs | Titus Wormer | 2022-08-18 | 1 | -0/+1 |
| | |||||
* | Add support for turning off constructs | Titus Wormer | 2022-07-18 | 1 | -16/+24 |
| | |||||
* | Add basic support for block quotes | Titus Wormer | 2022-07-07 | 1 | -6/+0 |
| | |||||
* | Make paragraphs really fast | Titus Wormer | 2022-07-01 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | The approach that `micromark-js` takes is as follows: to parse a paragraph, check whether each line starts with something else. If it does, exit, otherwise continue. That is slow, because our actual flow parser does similar things: the work was being done twice. To fix this, this commit introduces parsing each line of a paragraph separately. And finally, when done with flow, combining adjacent paragraphs. This same mechanism is reused for setext headings. Additionally, this commit adds support for interrupting things (or not). E.g., HTML (flow, complete) cannot interrupt paragraphs. Definitions cannot interrupt paragraphs, and connect be interrupted either, but they can follow each other. | ||||
* | Make data a construct | Titus Wormer | 2022-06-21 | 1 | -1/+1 |
| | |||||
* | Add support for inferring line ending, configurable | Titus Wormer | 2022-06-21 | 1 | -2/+3 |
| | | | | | | * Rename `CompileOptions` to `Options` * Add support for an optional default line ending style * Add support for inferring the used line ending style | ||||
* | Add improved whitespace handling | Titus Wormer | 2022-06-20 | 1 | -1/+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 | ||||
* | Add support for sanitizing urls | Titus Wormer | 2022-06-13 | 1 | -25/+38 |
| | | | | | | * Add support for properly encoding characters in urls * Add support for sanitizing potentially dangerous urls * Add safe defaults, optionally live dangerously | ||||
* | Add autolinks | Titus Wormer | 2022-06-13 | 1 | -0/+247 |