diff options
author | Waylan Limberg <waylan@gmail.com> | 2010-01-03 23:00:22 -0500 |
---|---|---|
committer | Waylan Limberg <waylan@gmail.com> | 2010-01-03 23:00:22 -0500 |
commit | c2d50b46b536a440b6d73c6bf309bdaf03b90abb (patch) | |
tree | 23f379fb3eadd2c7161ec37606a75c50a4905c66 /tests | |
parent | fc3020c68575042a1ff5426ddd94bc4be65bf77d (diff) | |
download | markdown-c2d50b46b536a440b6d73c6bf309bdaf03b90abb.tar.gz markdown-c2d50b46b536a440b6d73c6bf309bdaf03b90abb.tar.bz2 markdown-c2d50b46b536a440b6d73c6bf309bdaf03b90abb.zip |
Cleanup and additional work on previous commit. NOTE: removed special treatment if raw <div>s with multiple line breaks - they no longer automagicly process their content as markdown. This matches other implementations. Finished rest of code for use by an extension - to be added later.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/misc/div.html | 3 | ||||
-rw-r--r-- | tests/misc/multi-line-tags.html | 3 | ||||
-rw-r--r-- | tests/misc/multiline-comments.html | 5 |
3 files changed, 7 insertions, 4 deletions
diff --git a/tests/misc/div.html b/tests/misc/div.html index 7cd0d6d..7b68854 100644 --- a/tests/misc/div.html +++ b/tests/misc/div.html @@ -1,4 +1,5 @@ <div id="sidebar"> -<p><em>foo</em></p> + _foo_ + </div>
\ No newline at end of file diff --git a/tests/misc/multi-line-tags.html b/tests/misc/multi-line-tags.html index 763a050..784c1dd 100644 --- a/tests/misc/multi-line-tags.html +++ b/tests/misc/multi-line-tags.html @@ -1,4 +1,5 @@ <div> -<p>asdf asdfasd</p> +asdf asdfasd + </div>
\ No newline at end of file diff --git a/tests/misc/multiline-comments.html b/tests/misc/multiline-comments.html index 547ba0b..12f8cb5 100644 --- a/tests/misc/multiline-comments.html +++ b/tests/misc/multiline-comments.html @@ -2,7 +2,7 @@ foo ---> +--> <p> @@ -12,5 +12,6 @@ foo <div> -<p>foo</p> +foo + </div>
\ No newline at end of file |