From 87e60277f53c12b5d399bc2ab73c1bf9a3171b53 Mon Sep 17 00:00:00 2001 From: Tee Parham Date: Wed, 1 Feb 2017 21:37:15 -0700 Subject: [PATCH] Remove ugly spacing See haml/haml#894 --- tests.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/tests.json b/tests.json index 87847de..fdd085b 100644 --- a/tests.json +++ b/tests.json @@ -196,7 +196,7 @@ "multiple simple Haml tags" : { "haml" : "%div\n %div\n %p", - "html" : "
\n
\n

\n
\n
" + "html" : "
\n
\n

\n
\n
" } }, @@ -260,7 +260,7 @@ "Inline content multiple simple tags" : { "haml" : "%div\n %div\n %p text", - "html" : "
\n
\n

text

\n
\n
" + "html" : "
\n
\n

text

\n
\n
" } }, @@ -268,17 +268,17 @@ "Nested content simple tag" : { "haml" : "%p\n hello", - "html" : "

\n hello\n

" + "html" : "

\nhello\n

" }, "Nested content tag with CSS" : { "haml" : "%p.class1\n hello", - "html" : "

\n hello\n

" + "html" : "

\nhello\n

" }, "Nested content multiple simple tags" : { "haml" : "%div\n %div\n %p\n text", - "html" : "
\n
\n

\n text\n

\n
\n
" + "html" : "
\n
\n

\ntext\n

\n
\n
" } }, @@ -482,14 +482,14 @@ "a nested markup comment" : { "haml" : "/\n comment\n comment2", - "html" : "" + "html" : "" } }, "conditional comments": { "a conditional comment" : { "haml" : "/[if IE]\n %p a", - "html" : "" + "html" : "" } }, @@ -654,7 +654,7 @@ "a tag with '>' appended and nested content" : { "haml" : "%li hello\n%li>\n world\n%li again", - "html" : "
  • hello
  • \n world\n
  • again
  • " + "html" : "
  • hello
  • \nworld\n
  • again
  • " }, "a tag with '<' appended" : {