Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2022-11-10 | Remove unneeded `extern crate`s | Hocdoc | 1 | -1/+0 | |
Closes GH-28. Co-authored-by: Bernhard Berger <bernhardberger3456@gmail.com> | |||||
2022-10-14 | Refactor to use default trait in tests | Titus Wormer | 1 | -4/+4 | |
2022-10-13 | Rename crate to `markdown` | Titus Wormer | 1 | -22/+22 | |
2022-10-11 | Refactor to use a bunch of `into` | Titus Wormer | 1 | -2/+2 | |
2022-10-06 | Refactor to split parse from compile options | Titus Wormer | 1 | -5/+8 | |
2022-09-28 | Add support for turning mdast to hast | Titus Wormer | 1 | -2/+4 | |
2022-09-26 | Add support for compiling to mdast | Titus Wormer | 1 | -1/+28 | |
See: <https://github.com/syntax-tree/mdast>. | |||||
2022-09-07 | Add support for recoverable syntax errors | Titus Wormer | 1 | -2/+4 | |
2022-08-18 | Add `pretty_assertions` to tests for diffs | Titus Wormer | 1 | -0/+1 | |
2022-07-26 | Refactor to drastically improve perf around whitespace | Titus Wormer | 1 | -6/+0 | |
2022-07-18 | Add support for turning off constructs | Titus Wormer | 1 | -7/+15 | |
2022-07-04 | Add support for attention (emphasis, strong) | Titus Wormer | 1 | -42/+35 | |
2022-07-01 | Make paragraphs really fast | Titus Wormer | 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. | |||||
2022-06-30 | Add support for trimming whitespace around string, text | Titus Wormer | 1 | -40/+34 | |
This commit introduces trimming initial and final whitespace around the whole string or text, or around line endings inside that string or text. * Add `register_resolver_before`, to run resolvers earlier than others, used for labels * Add resolver to merge `data` events, which are the most frequent token that occurs, and can happen adjacently. In `micromark-js` this sped up parsing a lot * Fix a bug where a virtual space was not seen as an okay event * Refactor to enable all turned off whitespace tests | |||||
2022-06-16 | Add support for hard break (trailing) | Titus Wormer | 1 | -63/+29 | |
2022-06-16 | Add support for hard break escape | Titus Wormer | 1 | -0/+167 | |