diff options
author | Waylan Limberg <waylan@gmail.com> | 2010-02-12 16:24:15 -0500 |
---|---|---|
committer | Waylan Limberg <waylan@gmail.com> | 2010-02-12 16:24:15 -0500 |
commit | 28caf01c8082dbed3a5ca87b070ffe5657514f01 (patch) | |
tree | 6aff8e9eb06daa4a4e5ebe6994e67f08b4397ee6 /tests/misc/some-test.html | |
parent | 7e0b959ef2a64f2339be28f258b895d7a79003a8 (diff) | |
download | markdown-28caf01c8082dbed3a5ca87b070ffe5657514f01.tar.gz markdown-28caf01c8082dbed3a5ca87b070ffe5657514f01.tar.bz2 markdown-28caf01c8082dbed3a5ca87b070ffe5657514f01.zip |
Moved test dir back out of markdown lib. We don't need to install the tests in everyones site-packages. We just need to distrubute them in the tarball for people to run before installing etc.
Diffstat (limited to 'tests/misc/some-test.html')
-rw-r--r-- | tests/misc/some-test.html | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/tests/misc/some-test.html b/tests/misc/some-test.html new file mode 100644 index 0000000..a36d1ee --- /dev/null +++ b/tests/misc/some-test.html @@ -0,0 +1,66 @@ +<hr /> +<ul> +<li> +<p>as if</p> +</li> +<li> +<p>as if2</p> +</li> +</ul> +<hr /> +<ul> +<li> +<p>as if</p> +</li> +<li> +<p>as if2</p> +</li> +</ul> +<hr /> +<ul> +<li>as if + non_code</li> +<li>as if2</li> +</ul> +<p>Markdown</p> +<ul> +<li>Python + is ok<ul> +<li>Therefore i am</li> +</ul> +</li> +<li> +<p>Perl sucks + big time</p> +<ul> +<li>But that's +ok</li> +</ul> +</li> +<li> +<p>Python is +ok + Or not?</p> +</li> +</ul> +<p>Here is a normal paragraph</p> +<ol> +<li>Another list +with a bunch of items</li> +<li> +<p>Mostly fruits</p> +<ol> +<li>Apple</li> +<li>Pare</li> +</ol> +</li> +</ol> +<p>asdfasdfasd</p> +<pre><code># This is a code example +import stuff + +Another code example +* Lists and similar stuff + +> Should be ignored +</code></pre>
\ No newline at end of file |