aboutsummaryrefslogtreecommitdiffstats
path: root/tests/definition.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Refactor to use default trait in testsLibravatar Titus Wormer2022-10-141-6/+6
|
* Add another test for setext heading underlines after definitionsLibravatar Titus Wormer2022-10-131-1/+7
|
* Rename crate to `markdown`Libravatar Titus Wormer2022-10-131-82/+82
|
* Refactor to use a bunch of `into`Libravatar Titus Wormer2022-10-111-4/+4
|
* Refactor to split parse from compile optionsLibravatar Titus Wormer2022-10-061-7/+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/+19
| | | | See: <https://github.com/syntax-tree/mdast>.
* Fix to prefer flow over definitions, setext headingsLibravatar Titus Wormer2022-09-141-0/+36
| | | | | | | | | | | | | | An undocumented part of CommonMark is how to deal with things in definition labels or definition titles (which both can span multiple lines). Can flow (or containers?) interrupt them? They can according to the `cmark` reference parser, so this was implemented here. This adds a new `Content` content type, which houses zero or more definitions, and then zero-or-one paragraphs. Content can be followed by a setext heading underline, which either turns into a setext heading when the content ends in a paragraph, or turns into the start of the following paragraph when it is followed by content that starts with a paragraph, or turns into a stray paragraph.
* Add support for recoverable syntax errorsLibravatar Titus Wormer2022-09-071-6/+7
|
* Add `pretty_assertions` to tests for diffsLibravatar Titus Wormer2022-08-181-0/+1
|
* Add more tests for definitions and block quotesLibravatar Titus Wormer2022-08-091-0/+6
|
* Refactor performance around links in subtokenizeLibravatar Titus Wormer2022-07-211-1/+7
|
* Add support for turning off constructsLibravatar Titus Wormer2022-07-181-17/+23
|
* Add tests for matching identifiers w/ turkish `i`Libravatar Titus Wormer2022-07-111-0/+25
|
* Fix container bug due to attemptsLibravatar Titus Wormer2022-07-081-6/+5
|
* Fix closing of flow when exiting containersLibravatar Titus Wormer2022-07-081-6/+5
|
* Add basic support for block quotesLibravatar Titus Wormer2022-07-071-2/+2
|
* Make paragraphs really fastLibravatar Titus Wormer2022-07-011-7/+6
| | | | | | | | | | | | | | | | | | 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 trimming whitespace around string, textLibravatar Titus Wormer2022-06-301-6/+5
| | | | | | | | | | | | | 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
* Fix a bunch of bugs with definitions, referencesLibravatar Titus Wormer2022-06-291-77/+71
| | | | | | | | | * Fix bug where whitespace after `:` was not allowed, it is * Fix bug where escapes in labels did not work due to typo * Fix to prefer first definition * Fix whitespace after definitions * Fix matching by adding normalizing * Fix reference from being output as data
* Add support for compiling definitionsLibravatar Titus Wormer2022-06-291-148/+126
|
* 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 bug with tabsLibravatar Titus Wormer2022-06-201-6/+5
|
* Add support for definitionsLibravatar Titus Wormer2022-06-171-0/+446
* Add definitions * Add partials for label, destination, title * Add `go`, to attempt something, and do something else on `ok`