diff options
author | Waylan Limberg <waylan@gmail.com> | 2008-08-22 13:58:19 -0400 |
---|---|---|
committer | Waylan Limberg <waylan@gmail.com> | 2008-08-22 13:58:19 -0400 |
commit | 81b56ed858fc0621907085d93ac4ac73674b16cb (patch) | |
tree | b212e6094b65512557e0b1bb4d6c6f31b9be3742 /tests/markdown-test/blockquotes-with-code-blocks.html | |
parent | f6da83640fefb0583ad956668a7b79e9d8143226 (diff) | |
download | markdown-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.html | 16 |
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 |