diff options
author | Waylan Limberg <waylan@gmail.com> | 2012-04-11 10:52:04 -0700 |
---|---|---|
committer | Waylan Limberg <waylan@gmail.com> | 2012-04-11 10:52:04 -0700 |
commit | a7e7bd60724e492432a6be51eb17e3896ef6d04d (patch) | |
tree | b931876543e5aa537602ace175bca40fa9544358 | |
parent | b3e0359421ee0a649975ca29635ac8c0d7cf7641 (diff) | |
parent | 9852c2263ef7775d2a508a9c1721148cbf3ae258 (diff) | |
download | markdown-a7e7bd60724e492432a6be51eb17e3896ef6d04d.tar.gz markdown-a7e7bd60724e492432a6be51eb17e3896ef6d04d.tar.bz2 markdown-a7e7bd60724e492432a6be51eb17e3896ef6d04d.zip |
Merge pull request #93 from fin/master
Remove `<del>` and `<ins>` from block-level elements list
-rw-r--r-- | markdown/util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/markdown/util.py b/markdown/util.py index 998211e..13cbff2 100644 --- a/markdown/util.py +++ b/markdown/util.py @@ -17,7 +17,7 @@ Constants you might want to modify BLOCK_LEVEL_ELEMENTS = re.compile("^(p|div|h[1-6]|blockquote|pre|table|dl|ol|ul" "|script|noscript|form|fieldset|iframe|math" - "|ins|del|hr|hr/|style|li|dt|dd|thead|tbody" + "|hr|hr/|style|li|dt|dd|thead|tbody" "|tr|th|td|section|footer|header|group|figure" "|figcaption|aside|article|canvas|output" "|progress|video)$") |