From 85cfbb68528c06e48ebd2618c44e51332e5c514d Mon Sep 17 00:00:00 2001 From: Andreas Lind Date: Tue, 7 Jul 2015 11:25:20 +0200 Subject: [PATCH] Added test for a code block with a single empty line as well. --- test/tests/gfm_code.html | 3 +++ test/tests/gfm_code.text | 6 ++++++ 2 files changed, 9 insertions(+) diff --git a/test/tests/gfm_code.html b/test/tests/gfm_code.html index 6999dd41..872ece77 100644 --- a/test/tests/gfm_code.html +++ b/test/tests/gfm_code.html @@ -5,3 +5,6 @@ console.log(a + ' world');
A longfence!

How about an empty code block?

+

How about a code block with only an empty line?

+

+
diff --git a/test/tests/gfm_code.text b/test/tests/gfm_code.text index 58686780..ca46c1fe 100644 --- a/test/tests/gfm_code.text +++ b/test/tests/gfm_code.text @@ -19,3 +19,9 @@ How about an empty code block? ```js ``` + +How about a code block with only an empty line? + +```js + +```