// Jest Snapshot v1, https://goo.gl/fbAQLP exports[`jsx-comment.md - markdown-verify 1`] = ` \`\`\`jsx const Foo = () => { return (
{/* This links to a page that does not yet exist. */}
); }; \`\`\` ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ \`\`\`jsx const Foo = () => { return (
{/* This links to a page that does not yet exist. */}
); }; \`\`\` `; exports[`markdown-preview-enhanced.md - markdown-verify 1`] = ` ## plain js block \`\`\`js console.log( "hello world" ); \`\`\` ## js block with arguments \`\`\`js {cmd=node .line-numbers} console.log( "hello world" ); \`\`\` ## js block with arguments and no space \`\`\`js{cmd=node .line-numbers} console.log( "hello world" ); \`\`\` ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ## plain js block \`\`\`js console.log("hello world"); \`\`\` ## js block with arguments \`\`\`js {cmd=node .line-numbers} console.log("hello world"); \`\`\` ## js block with arguments and no space \`\`\`js{cmd=node .line-numbers} console.log("hello world"); \`\`\` `; exports[`trailing-comma.md - markdown-verify 1`] = ` ### Some heading \`\`\`js someFunctionCall( foo, bar, foobar, sometehingReallyLongAndHairy, somethingElse, breakNow, ); \`\`\` ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ### Some heading \`\`\`js someFunctionCall( foo, bar, foobar, sometehingReallyLongAndHairy, somethingElse, breakNow, ); \`\`\` `;