mirror of
https://github.com/facebook/docusaurus.git
synced 2025-06-08 22:03:01 +02:00
fix(markdown): mdx-code-block should support intentation (#10240)
This commit is contained in:
parent
97630b438e
commit
3a0a2a74b8
2 changed files with 32 additions and 2 deletions
|
@ -1229,6 +1229,36 @@ text\r
|
|||
`);
|
||||
});
|
||||
|
||||
it('can unwrap indented mdx code block', () => {
|
||||
expect(
|
||||
unwrapMdxCodeBlocks(dedent`
|
||||
# Title
|
||||
|
||||
<div>
|
||||
\`\`\`mdx-code-block
|
||||
content
|
||||
\`\`\`
|
||||
</div>
|
||||
|
||||
\`\`\`\`mdx-code-block
|
||||
content2
|
||||
\`\`\`\`
|
||||
|
||||
text
|
||||
`),
|
||||
).toEqual(dedent`
|
||||
# Title
|
||||
|
||||
<div>
|
||||
content
|
||||
</div>
|
||||
|
||||
content2
|
||||
|
||||
text
|
||||
`);
|
||||
});
|
||||
|
||||
it('works for realistic example', () => {
|
||||
expect(
|
||||
unwrapMdxCodeBlocks(dedent`
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue