aboutsummaryrefslogtreecommitdiffstats
path: root/markdown/util.py
diff options
context:
space:
mode:
authorDavid <admin@dav1d.de>2014-03-02 13:50:57 +0100
committerDavid <admin@dav1d.de>2014-03-02 13:50:57 +0100
commit8c14acc74d07830e09dceb904adf640ddc9b8aca (patch)
tree7e1e946c9ced96e735a8a3c7dcc113f75c193ce1 /markdown/util.py
parentd7fa7931bec55eec5498cd79882b770d1110b9b7 (diff)
downloadmarkdown-8c14acc74d07830e09dceb904adf640ddc9b8aca.tar.gz
markdown-8c14acc74d07830e09dceb904adf640ddc9b8aca.tar.bz2
markdown-8c14acc74d07830e09dceb904adf640ddc9b8aca.zip
added nav-tag as block level element
Diffstat (limited to 'markdown/util.py')
-rw-r--r--markdown/util.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/markdown/util.py b/markdown/util.py
index 882c413..edb2588 100644
--- a/markdown/util.py
+++ b/markdown/util.py
@@ -30,7 +30,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)$", re.IGNORECASE)
+ "|progress|video|nav)$", re.IGNORECASE)
# Placeholders
STX = '\u0002' # Use STX ("Start of text") for start-of-placeholder
ETX = '\u0003' # Use ETX ("End of text") for end-of-placeholder