diff options
author | Waylan Limberg <waylan@gmail.com> | 2010-01-02 21:44:56 -0500 |
---|---|---|
committer | Waylan Limberg <waylan@gmail.com> | 2010-01-03 11:39:29 -0500 |
commit | 75504dedd3d309dae9158087731a967ec6725b57 (patch) | |
tree | 45d4e4df0d676a937185e5add579dacc185d0c50 /tests | |
parent | 6b1a159bc6fa5ffa6eb311d61f40595af5c19650 (diff) | |
download | markdown-75504dedd3d309dae9158087731a967ec6725b57.tar.gz markdown-75504dedd3d309dae9158087731a967ec6725b57.tar.bz2 markdown-75504dedd3d309dae9158087731a967ec6725b57.zip |
Fixed ticket 44. Raw HTML now maintains original whitespace. Important inside raw <pre> tags.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/misc/raw_whitespace.html | 8 | ||||
-rw-r--r-- | tests/misc/raw_whitespace.txt | 10 |
2 files changed, 18 insertions, 0 deletions
diff --git a/tests/misc/raw_whitespace.html b/tests/misc/raw_whitespace.html new file mode 100644 index 0000000..7a6f131 --- /dev/null +++ b/tests/misc/raw_whitespace.html @@ -0,0 +1,8 @@ +<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 new file mode 100644 index 0000000..bbc7cec --- /dev/null +++ b/tests/misc/raw_whitespace.txt @@ -0,0 +1,10 @@ +Preserve whitespace in raw html + +<pre> +class Foo(): + bar = 'bar' + + def baz(self): + print self.bar +</pre> + |