aboutsummaryrefslogtreecommitdiffstats
path: root/tests/html_flow.rs (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Add support for recoverable syntax errorsLibravatar Titus Wormer2022-09-071-156/+172
|
* Add `pretty_assertions` to tests for diffsLibravatar Titus Wormer2022-08-181-0/+1
|
* Add support for turning off constructsLibravatar Titus Wormer2022-07-181-160/+202
|
* Fix html (flow) whitespace againLibravatar Titus Wormer2022-07-141-44/+40
|
* Fix a bunch of container thingsLibravatar Titus Wormer2022-07-141-45/+48
| | | | | | | | * Fix a lot of container code * Fix to prevent code (indented) from interrupting a lazy container * Fix compiling when combining tight paragraphs, empty list items, and html * Fix list items starting w/ blank lines causing loose lists * Fix crash when looking for a previous blank line
* Add support for lazy linesLibravatar Titus Wormer2022-07-111-7/+7
|
* Fix interrupting when exiting containersLibravatar Titus Wormer2022-07-081-6/+5
|
* Add improved container enter/exit mechanismLibravatar Titus Wormer2022-07-081-6/+5
|
* Fix closing of flow when exiting containersLibravatar Titus Wormer2022-07-081-42/+35
|
* Add support for concrete constructsLibravatar Titus Wormer2022-07-081-7/+6
|
* Add basic support for block quotesLibravatar Titus Wormer2022-07-071-53/+55
|
* Add support for attention (emphasis, strong)Libravatar Titus Wormer2022-07-041-69/+58
|
* 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
* 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
* Add some more enabled testsLibravatar Titus Wormer2022-06-201-68/+58
|
* Update to enable some tests for added constructsLibravatar Titus Wormer2022-06-151-8/+7
|
* Fix support for deep subtokenizationLibravatar Titus Wormer2022-06-141-6/+5
| | | | | | * 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-5/+6
| | | | | | | * 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 😅
* Add support for sanitizing urlsLibravatar Titus Wormer2022-06-131-0/+1
| | | | | | * Add support for properly encoding characters in urls * Add support for sanitizing potentially dangerous urls * Add safe defaults, optionally live dangerously
* Add proper support for subtokenizationLibravatar Titus Wormer2022-06-101-5/+6
| | | | | | | - Add “content” content type - Add paragraph - Add skips - Add linked tokens
* Add temporary support for stripping whitespaceLibravatar Titus Wormer2022-06-091-6/+5
|
* Add support for indented lines in paragraphsLibravatar Titus Wormer2022-06-091-38/+36
|
* .Libravatar Titus Wormer2022-06-081-0/+1058