aboutsummaryrefslogtreecommitdiffstats
path: root/tests/link_reference.rs (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-09-28Add support for turning mdast to hastLibravatar Titus Wormer1-2/+4
2022-09-26Add support for compiling to mdastLibravatar Titus Wormer1-1/+72
See: <https://github.com/syntax-tree/mdast>.
2022-09-07Add support for recoverable syntax errorsLibravatar Titus Wormer1-4/+6
2022-08-18Add `pretty_assertions` to tests for diffsLibravatar Titus Wormer1-0/+1
2022-07-18Add support for turning off constructsLibravatar Titus Wormer1-20/+36
2022-07-05Fix interleaving of attention/labelLibravatar Titus Wormer1-12/+10
2022-07-05Fix resizing attention bugLibravatar Titus Wormer1-35/+33
2022-07-04Add support for attention (emphasis, strong)Libravatar Titus Wormer1-35/+33
2022-06-30Add support for trimming whitespace around string, textLibravatar Titus Wormer1-13/+11
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-30Fix to prefer resource when givenLibravatar Titus Wormer1-6/+11
2022-06-30Add tests for link (reference)Libravatar Titus Wormer1-0/+402