Skip to content

Latest commit

 

History

History
54 lines (40 loc) · 1.16 KB

readme.md

File metadata and controls

54 lines (40 loc) · 1.16 KB

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