ut-tools
Version:
Build and Release management automation package.
104 lines (71 loc) • 2.21 kB
Markdown
[![Build][build-badge]][build]
[![Downloads][downloads-badge]][downloads]
[![Size][size-badge]][size]
List of known MathML tag names.
Includes the elements from [MathML 1][mathml1], [MathML 2][mathml2], and
[][mathml3].
The repo contains a script to crawl specs to include newly introduced tag names.
[][]:
```sh
npm install mathml-tag-names
```
```js
var mathMLTagNames = require('mathml-tag-names')
console.log(mathMLTagNames.length) // => 202
console.log(mathMLTagNames.slice(0, 20))
```
Yields:
```js
[ 'abs',
'and',
'annotation',
'annotation-xml',
'apply',
'approx',
'arccos',
'arccosh',
'arccot',
'arccoth',
'arccsc',
'arccsch',
'arcsec',
'arcsech',
'arcsin',
'arcsinh',
'arctan',
'arctanh',
'arg',
'bind' ]
```
`Array.<string>` — List of lowercase tag names.
* [`html-tag-names`](https://github.com/wooorm/html-tag-names)
— List of HTML tags
* [`svg-tag-names`](https://github.com/wooorm/svg-tag-names)
— List of SVG tags
* [`svg-element-attributes`](https://github.com/wooorm/svg-element-attributes)
— Map of SVG elements to allowed attributes
* [`html-element-attributes`](https://github.com/wooorm/html-element-attributes)
— Map of HTML elements to allowed attributes
* [`aria-attributes`](https://github.com/wooorm/aria-attributes)
— List of ARIA attributes
[][license] © [Titus Wormer][author]
<!-- Definition -->
[]: https://img.shields.io/travis/wooorm/mathml-tag-names.svg
[]: https://travis-ci.org/wooorm/mathml-tag-names
[]: https://img.shields.io/npm/dm/mathml-tag-names.svg
[]: https://www.npmjs.com/package/mathml-tag-names
[]: https://img.shields.io/bundlephobia/minzip/mathml-tag-names.svg
[]: https://bundlephobia.com/result?p=mathml-tag-names
[]: https://docs.npmjs.com/cli/install
[]: license
[]: https://wooorm.com
[]: https://www.w3.org/TR/1998/REC-MathML-19980407/appendixF.html
[]: https://www.w3.org/TR/MathML2/appendixl.html
[]: https://www.w3.org/TR/MathML3/appendixi.html