diff options
author | Waylan Limberg <waylan@gmail.com> | 2010-02-12 15:45:28 -0500 |
---|---|---|
committer | Waylan Limberg <waylan@gmail.com> | 2010-02-12 15:53:20 -0500 |
commit | 7e0b959ef2a64f2339be28f258b895d7a79003a8 (patch) | |
tree | e4383c374ceaa8f8afc6a4659b85fcb6927d62f6 /tests/misc | |
parent | 8f62bb0a6ce46055a2decbae6b33d53922c758b8 (diff) | |
download | markdown-7e0b959ef2a64f2339be28f258b895d7a79003a8.tar.gz markdown-7e0b959ef2a64f2339be28f258b895d7a79003a8.tar.bz2 markdown-7e0b959ef2a64f2339be28f258b895d7a79003a8.zip |
Moved remaining tests from merge
Diffstat (limited to 'tests/misc')
-rw-r--r-- | tests/misc/raw_whitespace.html | 8 | ||||
-rw-r--r-- | tests/misc/raw_whitespace.txt | 10 | ||||
-rw-r--r-- | tests/misc/smart_em.html | 5 | ||||
-rw-r--r-- | tests/misc/smart_em.txt | 9 |
4 files changed, 0 insertions, 32 deletions
diff --git a/tests/misc/raw_whitespace.html b/tests/misc/raw_whitespace.html deleted file mode 100644 index 7a6f131..0000000 --- a/tests/misc/raw_whitespace.html +++ /dev/null @@ -1,8 +0,0 @@ -<p>Preserve whitespace in raw html</p> -<pre> -class Foo(): - bar = 'bar' - - def baz(self): - print self.bar -</pre>
\ No newline at end of file diff --git a/tests/misc/raw_whitespace.txt b/tests/misc/raw_whitespace.txt deleted file mode 100644 index bbc7cec..0000000 --- a/tests/misc/raw_whitespace.txt +++ /dev/null @@ -1,10 +0,0 @@ -Preserve whitespace in raw html - -<pre> -class Foo(): - bar = 'bar' - - def baz(self): - print self.bar -</pre> - diff --git a/tests/misc/smart_em.html b/tests/misc/smart_em.html deleted file mode 100644 index 5683b25..0000000 --- a/tests/misc/smart_em.html +++ /dev/null @@ -1,5 +0,0 @@ -<p><em>emphasis</em></p> -<p>this_is_not_emphasis</p> -<p>[<em>punctuation with emphasis</em>]</p> -<p>[<em>punctuation_with_emphasis</em>]</p> -<p>[punctuation_without_emphasis]</p>
\ No newline at end of file diff --git a/tests/misc/smart_em.txt b/tests/misc/smart_em.txt deleted file mode 100644 index 3c56842..0000000 --- a/tests/misc/smart_em.txt +++ /dev/null @@ -1,9 +0,0 @@ -_emphasis_ - -this_is_not_emphasis - -[_punctuation with emphasis_] - -[_punctuation_with_emphasis_] - -[punctuation_without_emphasis] |