From 9a021b2130868db90dfe77c83820d68269e3787e Mon Sep 17 00:00:00 2001 From: Aidan Woods Date: Mon, 9 Apr 2018 14:11:49 +0100 Subject: [PATCH] Add failing test cases --- test/data/code_block.html | 7 ++++++- test/data/code_block.md | 9 ++++++++- test/data/fenced_code_block.html | 6 +++++- test/data/fenced_code_block.md | 9 ++++++++- 4 files changed, 27 insertions(+), 4 deletions(-) diff --git a/test/data/code_block.html b/test/data/code_block.html index 889b02d..a186e9a 100644 --- a/test/data/code_block.html +++ b/test/data/code_block.html @@ -5,4 +5,9 @@ echo $message;
> not a quote
 - not a list item
-[not a reference]: http://foo.com
\ No newline at end of file +[not a reference]: http://foo.com +
+
foo
+
+
+bar
\ No newline at end of file diff --git a/test/data/code_block.md b/test/data/code_block.md index 2cfc953..badf873 100644 --- a/test/data/code_block.md +++ b/test/data/code_block.md @@ -7,4 +7,11 @@ > not a quote - not a list item - [not a reference]: http://foo.com \ No newline at end of file + [not a reference]: http://foo.com + +--- + + foo + + + bar \ No newline at end of file diff --git a/test/data/fenced_code_block.html b/test/data/fenced_code_block.html index 78480fd..50d39df 100644 --- a/test/data/fenced_code_block.html +++ b/test/data/fenced_code_block.html @@ -11,4 +11,8 @@ echo "Hello World"; <a href="http://auraphp.com" >Aura Project</a>
the following isn't quite enough to close
 ```
-still a fenced code block
\ No newline at end of file +still a fenced code block +
foo
+
+
+bar
\ No newline at end of file diff --git a/test/data/fenced_code_block.md b/test/data/fenced_code_block.md index 35acb75..3e4155a 100644 --- a/test/data/fenced_code_block.md +++ b/test/data/fenced_code_block.md @@ -28,4 +28,11 @@ echo "Hello World"; the following isn't quite enough to close ``` still a fenced code block -```` \ No newline at end of file +```` + +``` +foo + + +bar +``` \ No newline at end of file