Metadata-Version: 2.1
Name: html-element-attributes
Version: 0.1.1
Summary: List of known HTML tag attributes
Home-page: https://github.com/Riverside-Healthcare/html-element-attributes
License: GPL-3.0-or-later
Author: Christopher Pickering
Author-email: cpickering@rhc.net
Requires-Python: >=3.7,<4.0
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: html5lib (>=1.1,<2.0)
Project-URL: Repository, https://github.com/Riverside-Healthcare/html-element-attributes
Description-Content-Type: text/markdown

# HtmlElementAttributes

Python port of npm package [html-element-attributes](https://www.npmjs.com/package/html-element-attributes).

List of known HTML tag attribute names.

## What is this?

This is a list of HTML tag attribute names.

## Install

```sh
pip install html-element-attributes
```

## Use

```py
from HtmlTagNames import html_element_attributes

print(html_element_attributes["*"])
```

Yields:

```py
[
  'accesskey',
  'autocapitalize',
  'autofocus',
  'class',
  // …
  'style',
  'tabindex',
  'title',
  'translate'
]
```
## License

[GPL][license] © Riverside Healthcare
Ported from `html-element-attributes` [MIT][LICENSE] © [Titus Wormer][https://github.com/wooorm]

[license]: LICENSE
