aboutsummaryrefslogtreecommitdiffstats
path: root/tests/misc
diff options
context:
space:
mode:
authorArtem Yunusov <nedrlab@gmail.com>2008-07-31 03:06:39 +0500
committerArtem Yunusov <nedrlab@gmail.com>2008-07-31 03:06:39 +0500
commitbd185087dc899b6157f821fdd29561caffcc4682 (patch)
treedb9445d13bdbd59fb999664462031d3630e0ffb0 /tests/misc
parentc99366a182afa3b0cd8da12075cd9ff8e15ae089 (diff)
downloadmarkdown-bd185087dc899b6157f821fdd29561caffcc4682.tar.gz
markdown-bd185087dc899b6157f821fdd29561caffcc4682.tar.bz2
markdown-bd185087dc899b6157f821fdd29561caffcc4682.zip
A lot of bug fixes, added ElementTree support for extensions, some new tests.
Diffstat (limited to 'tests/misc')
-rwxr-xr-xtests/misc/blockquote-below-paragraph.html6
-rwxr-xr-xtests/misc/blockquote-below-paragraph.txt3
-rwxr-xr-xtests/misc/html-comments.html2
-rwxr-xr-xtests/misc/html-comments.txt2
4 files changed, 13 insertions, 0 deletions
diff --git a/tests/misc/blockquote-below-paragraph.html b/tests/misc/blockquote-below-paragraph.html
new file mode 100755
index 0000000..5757a9a
--- /dev/null
+++ b/tests/misc/blockquote-below-paragraph.html
@@ -0,0 +1,6 @@
+<p>Paragraph</p>
+<blockquote>
+ <p>Block quote
+Yep</p>
+</blockquote>
+
diff --git a/tests/misc/blockquote-below-paragraph.txt b/tests/misc/blockquote-below-paragraph.txt
new file mode 100755
index 0000000..0dd4d5c
--- /dev/null
+++ b/tests/misc/blockquote-below-paragraph.txt
@@ -0,0 +1,3 @@
+Paragraph
+>Block quote
+>Yep
diff --git a/tests/misc/html-comments.html b/tests/misc/html-comments.html
new file mode 100755
index 0000000..ac08082
--- /dev/null
+++ b/tests/misc/html-comments.html
@@ -0,0 +1,2 @@
+<p>Here is HTML <!-- **comment** -->
+and once more <p><!--comment--></p></p>
diff --git a/tests/misc/html-comments.txt b/tests/misc/html-comments.txt
new file mode 100755
index 0000000..cac4da5
--- /dev/null
+++ b/tests/misc/html-comments.txt
@@ -0,0 +1,2 @@
+Here is HTML <!-- **comment** -->
+and once more <p><!--comment--></p>