diff options
Diffstat (limited to 'tests/mdx_jsx_flow.rs')
-rw-r--r-- | tests/mdx_jsx_flow.rs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/mdx_jsx_flow.rs b/tests/mdx_jsx_flow.rs index 031d1fd..b2fdf30 100644 --- a/tests/mdx_jsx_flow.rs +++ b/tests/mdx_jsx_flow.rs @@ -23,6 +23,25 @@ fn mdx_jsx_flow_agnostic() -> Result<(), String> { "should support a self-closing element" ); + // Note: in MDX, indented code is turned off: + assert_eq!( + to_html_with_options( + " <a />", + &Options { + parse: ParseOptions { + constructs: Constructs { + mdx_jsx_flow: true, + ..Constructs::default() + }, + ..ParseOptions::default() + }, + ..Options::default() + } + )?, + "<pre><code><a />\n</code></pre>", + "should prefer indented code over jsx if it’s enabled" + ); + assert_eq!( to_html_with_options("<a></a>", &mdx)?, "", |