diff options
author | Waylan Limberg <waylan@gmail.com> | 2011-12-29 17:31:32 -0500 |
---|---|---|
committer | Waylan Limberg <waylan@gmail.com> | 2011-12-29 17:31:32 -0500 |
commit | 1e5d0cb773e993fac2d56c4abe93b66cf208eead (patch) | |
tree | 5e9f09bb8eb30401d172a02bed8dd0ed2f4d75c2 /tests/misc/comments.html | |
parent | 400ebc2efe38178a4817cd5517d8c9d89ee3a5a7 (diff) | |
download | markdown-1e5d0cb773e993fac2d56c4abe93b66cf208eead.tar.gz markdown-1e5d0cb773e993fac2d56c4abe93b66cf208eead.tar.bz2 markdown-1e5d0cb773e993fac2d56c4abe93b66cf208eead.zip |
Fixed #68. Blank line is not required after html comments.
Interestingly, the change to the misc/mismatched-tags test is inline with
PHP Markdown Extra's behavior but not markdown.pl, which produces invalid html.
Diffstat (limited to 'tests/misc/comments.html')
-rw-r--r-- | tests/misc/comments.html | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/misc/comments.html b/tests/misc/comments.html index 005a755..2240ab9 100644 --- a/tests/misc/comments.html +++ b/tests/misc/comments.html @@ -2,4 +2,8 @@ <p>X>0</p> <!-- A comment --> -<div>as if</div>
\ No newline at end of file +<div>as if</div> + +<!-- comment --> + +<p><strong>no blank line</strong></p>
\ No newline at end of file |