Skip to content

Commit

Permalink
Added HTML5 Elements
Browse files Browse the repository at this point in the history
  • Loading branch information
oksome committed Aug 9, 2014
1 parent cdce47a commit e57f244
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions tumulus/tags.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,23 @@ class HTMLTagsGenerator():
'img', 'iframe',
'body', 'div', 'span', 'pre',
'h1', 'h2', 'h3',
'header', 'section',
'ul', 'li', 'br',
'a', 'p', 'i',
'a', 'p', 'i', 'b',
'form', 'input', 'textarea',
'menu',
# New Elements in HTML5:
# Canvas
'canvas',
# Media
'audio', 'embed', 'source', 'track', 'video',
# Form
'datalist', 'keygen', 'output',
# Semantic
'article', 'aside', 'bdi', 'details', 'dialog',
'figcaption', 'figure', 'footer', 'header', 'main',
'mark', 'menuitem', 'meter', 'nav', 'progress',
'rp', 'rt', 'ruby', 'section', 'summary',
'time', 'wbr',
)

def __init__(self):
Expand Down

0 comments on commit e57f244

Please sign in to comment.