Skip to content

Commit

Permalink
Allow HTML5 tags
Browse files Browse the repository at this point in the history
  • Loading branch information
dietmarw committed Apr 19, 2024
1 parent 2b678fa commit b3fead3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .CI/checkHTMLDoc/checkTags.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
VOID_TAGS = ('area', 'base', 'br', 'col', 'embed', 'hr', 'img', 'input', 'keygen', 'link', 'menuitem', 'meta', 'param', 'source', 'track', 'wbr')

# Tags that should not be used
AVOIDABLE_TAGS = ('b', 'i', 'h1', 'h2', 'h3', 'h6', 'figure', 'figcaption')
AVOIDABLE_TAGS = ('b', 'i', 'h1', 'h2', 'h3', 'h6')

def _checkFileTags(file_name):
"""
Expand Down

0 comments on commit b3fead3

Please sign in to comment.