diff --git a/test/from-markdown/html/markdown/input.md b/test/from-markdown/html/markdown/input.md new file mode 100644 index 00000000..2857f3f9 --- /dev/null +++ b/test/from-markdown/html/markdown/input.md @@ -0,0 +1,5 @@ +
+ +This div contains Markdown with a [link](https://www.google.com) and some **bold content**. + +
diff --git a/test/from-markdown/html/markdown/output.js b/test/from-markdown/html/markdown/output.js new file mode 100644 index 00000000..e5af2c5c --- /dev/null +++ b/test/from-markdown/html/markdown/output.js @@ -0,0 +1,12 @@ +/** @jsx h */ +import h from 'h'; + +export default ( + + + This div contains Markdown with a{' '} + link and some{' '} + bold content. + + +); diff --git a/test/from-markdown/html/not-html/input.md b/test/from-markdown/html/not-html/input.md deleted file mode 100644 index 9c3a9b53..00000000 --- a/test/from-markdown/html/not-html/input.md +++ /dev/null @@ -1,7 +0,0 @@ -Test regexp to not catch non-html - - - -NOT HTML - -
TRUE HTML
\ No newline at end of file diff --git a/test/from-markdown/html/not-html/output.js b/test/from-markdown/html/not-html/output.js deleted file mode 100644 index dc38eaf2..00000000 --- a/test/from-markdown/html/not-html/output.js +++ /dev/null @@ -1,11 +0,0 @@ -/** @jsx h */ -import h from 'h'; - -export default ( - - Test regexp to not catch non-html - {''} - {'NOT HTML'} - TRUE HTML - -);