aboutsummaryrefslogtreecommitdiffstats
path: root/tests (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-10-25Fix lists in MDXLibravatar Titus Wormer1-0/+6
Closes GH-11.
2022-10-14Refactor to use default trait in testsLibravatar Titus Wormer42-543/+429
2022-10-14Add some more tests on mdx and indented codeLibravatar Titus Wormer2-0/+38
2022-10-13Add test for broken jsx and containersLibravatar Titus Wormer1-4/+13
2022-10-13Remove some unused code in gfm tablesLibravatar Titus Wormer1-0/+19
2022-10-13Add test for raw html w/o `>` after closing tagLibravatar Titus Wormer1-0/+6
2022-10-13Add test for mdx and indented codeLibravatar Titus Wormer2-0/+38
2022-10-13Add test for non-empty blank lines in footnotesLibravatar Titus Wormer1-0/+17
2022-10-13Add tests for numeric character references in mdastLibravatar Titus Wormer1-5/+5
2022-10-13Fix cr, crlf in code (fenced) for mdastLibravatar Titus Wormer1-0/+28
2022-10-13Add a lot of tests on how mdast, unist workLibravatar Titus Wormer1-5/+233
2022-10-13Add more tests for whitespace in jsx tagsLibravatar Titus Wormer1-0/+72
2022-10-13Add a bunch more tests for frontmatterLibravatar Titus Wormer1-0/+54
2022-10-13Add another test for setext heading underlines after definitionsLibravatar Titus Wormer1-1/+7
2022-10-13Rename crate to `markdown`Libravatar Titus Wormer60-2556/+2544
2022-10-12Add internals to compile JSX away (wip)Libravatar Titus Wormer4-1/+377
2022-10-11Refactor some internals to accept mutable referencesLibravatar Titus Wormer4-16/+12
2022-10-11Refactor test utilities to improve namesLibravatar Titus Wormer13-240/+304
2022-10-11Refactor to use a bunch of `into`Libravatar Titus Wormer34-203/+193
2022-10-11Refactor some hidden internalsLibravatar Titus Wormer2-8/+8
2022-10-11Add support for proper positional info in swc treeLibravatar Titus Wormer17-446/+884
* Fix some positional info in SWC error messages * Add positional info in `to_document` on duplicate layouts * Add support for `path` on `Program` (`to_swc`, `to_document`, `jsx_rewrite`), for the path of a file on disk * Add support for `development` to `jsx-rewrite`, which when defined will embed info on where tags were written into the runtime code when they are not passed * Refactor to move some utilities to `micromark_swc_utils.rs`, `swc_utils.rs`
2022-10-06Refactor to improve `to_hast` internalsLibravatar Titus Wormer2-828/+624
2022-10-06Refactor to split parse from compile optionsLibravatar Titus Wormer43-314/+627
2022-10-06Refactor to share identifier methodsLibravatar Titus Wormer1-15/+5
2022-10-06Add support for HTML 4 character references in JSX attributesLibravatar Titus Wormer1-0/+91
2022-10-05Add support for form feeds as html whitespaceLibravatar Titus Wormer1-2/+1
2022-10-05Add support for rewriting JSXLibravatar Titus Wormer5-2/+1549
2022-10-04Refactor to share a test utilityLibravatar Titus Wormer5-199/+234
2022-10-03Add support for creating a component, using layoutLibravatar Titus Wormer5-2/+883
2022-09-30Add support for turning hast into swcLibravatar Titus Wormer7-92/+1479
2022-09-29Add note on future ideaLibravatar Titus Wormer1-0/+4
2022-09-28Add support for turning mdast to hastLibravatar Titus Wormer46-348/+3718
2022-09-26Add support for compiling to mdastLibravatar Titus Wormer34-38/+1556
See: <https://github.com/syntax-tree/mdast>.
2022-09-19Add support for parsing MDX ESM, expressionsLibravatar Titus Wormer9-417/+941
This commit adds support for hooks that lets a user integrate another parser with `micromark-rs`, to parse ESM and expressions according to a particular grammar (such as a programming language, typically JavaScript). For an example integrating with SWC, see `tests/test_utils/mod.rs`. The integration occurs with two functions passed in `options`: `mdx_expression_parse` and `mdx_esm_parse`. The can signal back to micromark when they are successful, whether there is an error at the end (in which case micromark will try to parse more), or whether there is a syntax error (in which case micromark will crash).
2022-09-14Fix to prefer flow over definitions, setext headingsLibravatar Titus Wormer3-1/+43
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.
2022-09-12Fix containers piercing into indented codeLibravatar Titus Wormer1-2/+14
2022-09-12Fix gfm email autolink literals overlappingLibravatar Titus Wormer1-2/+17
2022-09-12Fix blank lines in labelsLibravatar Titus Wormer1-0/+14
2022-09-12Fix whitespace in GFM footnote definition identifiersLibravatar Titus Wormer1-109/+177
* Fix a crash on line endings in footnote definitions * Fix to match spaces and tabs in identifiers to `cmark-gfm` * Fix order of one attribute
2022-09-09Add docs for mdx expressionsLibravatar Titus Wormer1-1/+1
2022-09-09Add support for mdx attribute (value) expressionsLibravatar Titus Wormer2-170/+167
2022-09-09Add mdx expression (flow, text)Libravatar Titus Wormer3-5/+512
2022-09-08Add support for mdx jsx (flow)Libravatar Titus Wormer2-0/+154
2022-09-08Add tests for mdx jsx (text)Libravatar Titus Wormer1-0/+821
2022-09-07Add support for recoverable syntax errorsLibravatar Titus Wormer40-1289/+1371
2022-09-05Add support for `mailto:`, `xmpp:` protocolsLibravatar Titus Wormer1-0/+43
2022-09-05Fix to implement GFM autolink literals exactlyLibravatar Titus Wormer1-2/+2440
2022-09-01Add support for GFM tagfilterLibravatar Titus Wormer1-0/+121
2022-08-31Add support for GFM tablesLibravatar Titus Wormer2-0/+1794
2022-08-26Add support for math (flow)Libravatar Titus Wormer2-30/+274