aboutsummaryrefslogtreecommitdiffstats
path: root/tests/markdown-test/blockquotes-with-code-blocks.html
diff options
context:
space:
mode:
authorWaylan Limberg <waylan@gmail.com>2008-08-22 13:58:19 -0400
committerWaylan Limberg <waylan@gmail.com>2008-08-22 13:58:19 -0400
commit81b56ed858fc0621907085d93ac4ac73674b16cb (patch)
treeb212e6094b65512557e0b1bb4d6c6f31b9be3742 /tests/markdown-test/blockquotes-with-code-blocks.html
parentf6da83640fefb0583ad956668a7b79e9d8143226 (diff)
downloadmarkdown-81b56ed858fc0621907085d93ac4ac73674b16cb.tar.gz
markdown-81b56ed858fc0621907085d93ac4ac73674b16cb.tar.bz2
markdown-81b56ed858fc0621907085d93ac4ac73674b16cb.zip
Fixed up some more tests - renamed misspelled filenames and removed executable status.
Diffstat (limited to 'tests/markdown-test/blockquotes-with-code-blocks.html')
-rw-r--r--tests/markdown-test/blockquotes-with-code-blocks.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/markdown-test/blockquotes-with-code-blocks.html b/tests/markdown-test/blockquotes-with-code-blocks.html
new file mode 100644
index 0000000..e7c79d9
--- /dev/null
+++ b/tests/markdown-test/blockquotes-with-code-blocks.html
@@ -0,0 +1,16 @@
+<blockquote>
+<p>Example:</p>
+<pre>
+<code>sub status {
+ print "working";
+}
+</code>
+</pre>
+<p>Or:</p>
+<pre>
+<code>sub status {
+ return "working";
+}
+</code>
+</pre>
+</blockquote> \ No newline at end of file