Skip to content

djlint/html-element-attributes

Repository files navigation

HTML Element Attributes

List of known HTML tag attribute names.

Python port of npm package html-element-attributes.

Pypi Version Downloads

🤔 What is this?

This is a list of HTML tag attribute names.

💾 Install

pip install html-element-attributes

✨ How to Use

from HtmlElementAttributes import html_element_attributes

print(html_element_attributes["*"])

Yields:

[
  'accesskey',
  'autocapitalize',
  'autofocus',
  'class',
  // …
  'style',
  'tabindex',
  'title',
  'translate'
]

License