diff options
author | Waylan Limberg <waylan@gmail.com> | 2012-10-21 14:22:37 -0400 |
---|---|---|
committer | Waylan Limberg <waylan@gmail.com> | 2012-10-21 14:22:37 -0400 |
commit | 9c0959dd9b319819c13ffffbfa7185c8b9eba612 (patch) | |
tree | 19e5e268fe2bc27973c67f371ff5c6d0fcf42177 /tests | |
parent | 0541e8e76f4ad2b8bfe302238eae85a77719e249 (diff) | |
download | markdown-9c0959dd9b319819c13ffffbfa7185c8b9eba612.tar.gz markdown-9c0959dd9b319819c13ffffbfa7185c8b9eba612.tar.bz2 markdown-9c0959dd9b319819c13ffffbfa7185c8b9eba612.zip |
Fixed #151. Raw html matching is now case-insensitive.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/misc/div.html | 7 | ||||
-rw-r--r-- | tests/misc/div.txt | 6 |
2 files changed, 12 insertions, 1 deletions
diff --git a/tests/misc/div.html b/tests/misc/div.html index 7b68854..cb6a759 100644 --- a/tests/misc/div.html +++ b/tests/misc/div.html @@ -2,4 +2,9 @@ _foo_ -</div>
\ No newline at end of file +</div> + +<p>And now in uppercase:</p> +<DIV> +foo +</DIV>
\ No newline at end of file diff --git a/tests/misc/div.txt b/tests/misc/div.txt index ca87745..4ff972e 100644 --- a/tests/misc/div.txt +++ b/tests/misc/div.txt @@ -3,3 +3,9 @@ _foo_ </div> + +And now in uppercase: + +<DIV> +foo +</DIV> |