rsuite-theme
Version:
The suite theme for pagurian
93 lines (65 loc) • 1.89 kB
Markdown
List of known MathML tag-names. Includes the elements from
[][mathml1], [MathML 2][mathml2], and
[][mathml3].
The repo contains a script to crawl specs to include newly introduced
tag-names.
[][]:
```bash
npm install mathml-tag-names
```
```javascript
var mathMLTagNames = require('mathml-tag-names');
mathMLTagNames.length; //=> 205
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 lower-case 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://docs.npmjs.com/cli/install
[]: LICENSE
[]: http://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