diff options
Diffstat (limited to 'tests/markdown-test/inline-html-simple.html')
-rw-r--r-- | tests/markdown-test/inline-html-simple.html | 24 |
1 files changed, 8 insertions, 16 deletions
diff --git a/tests/markdown-test/inline-html-simple.html b/tests/markdown-test/inline-html-simple.html index df98803..cb10451 100644 --- a/tests/markdown-test/inline-html-simple.html +++ b/tests/markdown-test/inline-html-simple.html @@ -4,17 +4,13 @@ </div> <p>This should be a code block, though:</p> -<pre> - <code><div> +<pre><code><div> foo </div> -</code> -</pre> +</code></pre> <p>As should this:</p> -<pre> - <code><div>foo</div> -</code> -</pre> +<pre><code><div>foo</div> +</code></pre> <p>Now, nested:</p> <div> <div> @@ -34,18 +30,14 @@ Blah --> <p>Code block:</p> -<pre> - <code><!-- Comment --> -</code> -</pre> +<pre><code><!-- Comment --> +</code></pre> <p>Just plain comment, with trailing spaces on the line:</p> <!-- foo --> <p>Code:</p> -<pre> - <code><hr /> -</code> -</pre> +<pre><code><hr /> +</code></pre> <p>Hr's:</p> <hr> |