aboutsummaryrefslogtreecommitdiffstats
path: root/tests/html_flow.rs (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-07-11Add support for lazy linesLibravatar Titus Wormer1-7/+7
2022-07-08Fix interrupting when exiting containersLibravatar Titus Wormer1-6/+5
2022-07-08Add improved container enter/exit mechanismLibravatar Titus Wormer1-6/+5
2022-07-08Fix closing of flow when exiting containersLibravatar Titus Wormer1-42/+35
2022-07-08Add support for concrete constructsLibravatar Titus Wormer1-7/+6
2022-07-07Add basic support for block quotesLibravatar Titus Wormer1-53/+55
2022-07-04Add support for attention (emphasis, strong)Libravatar Titus Wormer1-69/+58
2022-07-01Make paragraphs really fastLibravatar Titus Wormer1-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.
2022-06-30Add support for trimming whitespace around string, textLibravatar Titus Wormer1-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
2022-06-21Add support for inferring line ending, configurableLibravatar Titus Wormer1-2/+3
* Rename `CompileOptions` to `Options` * Add support for an optional default line ending style * Add support for inferring the used line ending style
2022-06-20Add some more enabled testsLibravatar Titus Wormer1-68/+58
2022-06-15Update to enable some tests for added constructsLibravatar Titus Wormer1-8/+7
2022-06-14Fix support for deep subtokenizationLibravatar Titus Wormer1-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
2022-06-13Add basic html (text)Libravatar Titus Wormer1-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 😅
2022-06-13Add support for sanitizing urlsLibravatar Titus Wormer1-0/+1
* Add support for properly encoding characters in urls * Add support for sanitizing potentially dangerous urls * Add safe defaults, optionally live dangerously
2022-06-10Add proper support for subtokenizationLibravatar Titus Wormer1-5/+6
- Add “content” content type - Add paragraph - Add skips - Add linked tokens
2022-06-09Add temporary support for stripping whitespaceLibravatar Titus Wormer1-6/+5
2022-06-09Add support for indented lines in paragraphsLibravatar Titus Wormer1-38/+36