diff options
-rw-r--r-- | markdown/util.py | 2 | ||||
-rw-r--r-- | tests/misc/div.html | 7 | ||||
-rw-r--r-- | tests/misc/div.txt | 6 |
3 files changed, 13 insertions, 2 deletions
diff --git a/markdown/util.py b/markdown/util.py index 13cbff2..db45a5e 100644 --- a/markdown/util.py +++ b/markdown/util.py @@ -20,7 +20,7 @@ BLOCK_LEVEL_ELEMENTS = re.compile("^(p|div|h[1-6]|blockquote|pre|table|dl|ol|ul" "|hr|hr/|style|li|dt|dd|thead|tbody" "|tr|th|td|section|footer|header|group|figure" "|figcaption|aside|article|canvas|output" - "|progress|video)$") + "|progress|video)$", re.IGNORECASE) # Placeholders STX = u'\u0002' # Use STX ("Start of text") for start-of-placeholder ETX = u'\u0003' # Use ETX ("End of text") for end-of-placeholder 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> |