diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-10-14 09:35:42 +0200 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-10-14 09:35:42 +0200 |
commit | 930630506c6d42250b5fe6b883ac65b2e9ba668b (patch) | |
tree | 8eacad920edcd9db6e303ec6c4be67b1d3aae96b /src/lib.rs | |
parent | 6263c957b09eb559d68ce4251bdc94426a3b1b0c (diff) | |
download | markdown-rs-930630506c6d42250b5fe6b883ac65b2e9ba668b.tar.gz markdown-rs-930630506c6d42250b5fe6b883ac65b2e9ba668b.tar.bz2 markdown-rs-930630506c6d42250b5fe6b883ac65b2e9ba668b.zip |
Add some more tests on mdx and indented code
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -493,6 +493,9 @@ pub struct Constructs { /// ^^^^^^^^^^^^^ /// ``` /// + /// > π **Note**: You *must* pass `html_flow: false` to use this, + /// > as itβs preferred when on over `mdx_jsx_flow`. + /// /// > π **Note**: You *can* pass /// > [`mdx_expression_parse`][MdxExpressionParse] in [`ParseOptions`][] /// > too, to parse expressions in JSX according to a certain grammar @@ -507,6 +510,9 @@ pub struct Constructs { /// ^^^^^^^^^^^^^ /// ``` /// + /// > π **Note**: You *must* pass `html_text: false` to use this, + /// > as itβs preferred when on over `mdx_jsx_text`. + /// /// > π **Note**: You *can* pass /// > [`mdx_expression_parse`][MdxExpressionParse] in [`ParseOptions`][] /// > too, to parse expressions in JSX according to a certain grammar |