diff --git a/__snapshots__/index.spec.js.snap b/__snapshots__/index.spec.js.snap index ad6099df..97a30215 100644 --- a/__snapshots__/index.spec.js.snap +++ b/__snapshots__/index.spec.js.snap @@ -370,6 +370,19 @@ exports[`markdown-to-jsx compiler arbitrary HTML #207 handles tables inside HTML `; +exports[`markdown-to-jsx compiler arbitrary HTML #214 nested paragraphs work inside html 1`] = ` + +
+

+ Hello +

+

+ World +

+
+ +`; + exports[`markdown-to-jsx compiler arbitrary HTML allows whitespace between attribute and value 1`] = `
{ + render( + compiler( + [ + '
', + 'Hello', + '', + 'World', + '
', + ].join('\n') + ) + ); + + expect(root.innerHTML).toMatchSnapshot(); + }); }); describe('horizontal rules', () => {