diff options
author | Yuri Takhteyev <yuri@freewisdom.org> | 2007-03-25 04:20:13 +0000 |
---|---|---|
committer | Yuri Takhteyev <yuri@freewisdom.org> | 2007-03-25 04:20:13 +0000 |
commit | 61bfe8df9484a759b0d1113ce75df03549984064 (patch) | |
tree | 8453fbd22acd56b6ecf739493fcd1a68b070d7ed | |
parent | cd9708990aa7dae660820f58221e4507241314e9 (diff) | |
download | markdown-61bfe8df9484a759b0d1113ce75df03549984064.tar.gz markdown-61bfe8df9484a759b0d1113ce75df03549984064.tar.bz2 markdown-61bfe8df9484a759b0d1113ce75df03549984064.zip |
Support for mismatched block-level html tags.
-rw-r--r-- | tests/misc/mismatched-tags.html | 9 | ||||
-rw-r--r-- | tests/misc/mismatched-tags.txt | 3 |
2 files changed, 12 insertions, 0 deletions
diff --git a/tests/misc/mismatched-tags.html b/tests/misc/mismatched-tags.html new file mode 100644 index 0000000..0004a19 --- /dev/null +++ b/tests/misc/mismatched-tags.html @@ -0,0 +1,9 @@ + +<p>Some text</p><div>some more text</div> + +and a bit more + + + + + diff --git a/tests/misc/mismatched-tags.txt b/tests/misc/mismatched-tags.txt new file mode 100644 index 0000000..66b27f1 --- /dev/null +++ b/tests/misc/mismatched-tags.txt @@ -0,0 +1,3 @@ +<p>Some text</p><div>some more text</div> + +and a bit more |