Skip to content

Commit 9e4f789

Browse files
author
Waylan Limberg
committed
Merge pull request Python-Markdown#292 from Dav1dde/master
added nav-tag as block level element. Fixes Python-Markdown#191. Thanks @Dav1dde
2 parents d7fa793 + 8c14acc commit 9e4f789

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

markdown/util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"|hr|hr/|style|li|dt|dd|thead|tbody"
3131
"|tr|th|td|section|footer|header|group|figure"
3232
"|figcaption|aside|article|canvas|output"
33-
"|progress|video)$", re.IGNORECASE)
33+
"|progress|video|nav)$", re.IGNORECASE)
3434
# Placeholders
3535
STX = '\u0002' # Use STX ("Start of text") for start-of-placeholder
3636
ETX = '\u0003' # Use ETX ("End of text") for end-of-placeholder

0 commit comments

Comments
 (0)