aboutsummaryrefslogtreecommitdiffstats
path: root/tests/html_text.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Remove unneeded `extern crate`sLibravatar Hocdoc2022-11-101-1/+0
| | | | | Closes GH-28. Co-authored-by: Bernhard Berger <bernhardberger3456@gmail.com>
* Refactor to use default trait in testsLibravatar Titus Wormer2022-10-141-6/+6
|
* Rename crate to `markdown`Libravatar Titus Wormer2022-10-131-72/+72
|
* Refactor to use a bunch of `into`Libravatar Titus Wormer2022-10-111-5/+5
|
* Refactor to split parse from compile optionsLibravatar Titus Wormer2022-10-061-6/+13
|
* Add support for turning mdast to hastLibravatar Titus Wormer2022-09-281-2/+4
|
* Add support for compiling to mdastLibravatar Titus Wormer2022-09-261-1/+37
| | | | See: <https://github.com/syntax-tree/mdast>.
* Add support for recoverable syntax errorsLibravatar Titus Wormer2022-09-071-68/+70
|
* Add `pretty_assertions` to tests for diffsLibravatar Titus Wormer2022-08-181-0/+1
|
* Add support for turning off constructsLibravatar Titus Wormer2022-07-181-79/+86
|
* Make paragraphs really fastLibravatar Titus Wormer2022-07-011-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, configurableLibravatar Titus Wormer2022-06-211-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 subtokenizationLibravatar Titus Wormer2022-06-141-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)Libravatar Titus Wormer2022-06-131-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 😅