Skip to content

Commit

Permalink
Merge pull request Python-Markdown#292 from Dav1dde/master
Browse files Browse the repository at this point in the history
added nav-tag as block level element. Fixes Python-Markdown#191. Thanks @Dav1dde
  • Loading branch information
Waylan Limberg committed Mar 2, 2014
2 parents d7fa793 + 8c14acc commit 9e4f789
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion markdown/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"|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
Expand Down

0 comments on commit 9e4f789

Please sign in to comment.