Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove unneeded `extern crate`s | 2022-11-10 | 1 | -1/+0 | |
| | | | | | Closes GH-28. Co-authored-by: Bernhard Berger <bernhardberger3456@gmail.com> | ||||
* | Refactor to use default trait in tests | 2022-10-14 | 1 | -6/+6 | |
| | |||||
* | Rename crate to `markdown` | 2022-10-13 | 1 | -72/+72 | |
| | |||||
* | Refactor to use a bunch of `into` | 2022-10-11 | 1 | -5/+5 | |
| | |||||
* | Refactor to split parse from compile options | 2022-10-06 | 1 | -6/+13 | |
| | |||||
* | Add support for turning mdast to hast | 2022-09-28 | 1 | -2/+4 | |
| | |||||
* | Add support for compiling to mdast | 2022-09-26 | 1 | -1/+37 | |
| | | | | See: <https://github.com/syntax-tree/mdast>. | ||||
* | Add support for recoverable syntax errors | 2022-09-07 | 1 | -68/+70 | |
| | |||||
* | Add `pretty_assertions` to tests for diffs | 2022-08-18 | 1 | -0/+1 | |
| | |||||
* | Add support for turning off constructs | 2022-07-18 | 1 | -79/+86 | |
| | |||||
* | Make paragraphs really fast | 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. | ||||
* | Add support for inferring line ending, configurable | 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 | ||||
* | Fix support for deep subtokenization | 2022-06-14 | 1 | -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) | 2022-06-13 | 1 | -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 😅 |