.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / mathml-tag-names / readme.md
1 # mathml-tag-names
2
3 [![Build][build-badge]][build]
4 [![Downloads][downloads-badge]][downloads]
5 [![Size][size-badge]][size]
6
7 List of known MathML tag names.
8 Includes the elements from [MathML 1][mathml1], [MathML 2][mathml2], and
9 [MathML 3][mathml3].
10
11 The repo contains a script to crawl specs to include newly introduced tag names.
12
13 ## Install
14
15 [npm][]:
16
17 ```sh
18 npm install mathml-tag-names
19 ```
20
21 ## Use
22
23 ```js
24 var mathMLTagNames = require('mathml-tag-names')
25
26 console.log(mathMLTagNames.length) // => 202
27
28 console.log(mathMLTagNames.slice(0, 20))
29 ```
30
31 Yields:
32
33 ```js
34 [ 'abs',
35   'and',
36   'annotation',
37   'annotation-xml',
38   'apply',
39   'approx',
40   'arccos',
41   'arccosh',
42   'arccot',
43   'arccoth',
44   'arccsc',
45   'arccsch',
46   'arcsec',
47   'arcsech',
48   'arcsin',
49   'arcsinh',
50   'arctan',
51   'arctanh',
52   'arg',
53   'bind' ]
54 ```
55
56 ## API
57
58 ### `mathMlTagNames`
59
60 `Array.<string>` — List of lowercase tag names.
61
62 ## Related
63
64 *   [`html-tag-names`](https://github.com/wooorm/html-tag-names)
65     — List of HTML tags
66 *   [`svg-tag-names`](https://github.com/wooorm/svg-tag-names)
67     — List of SVG tags
68 *   [`svg-element-attributes`](https://github.com/wooorm/svg-element-attributes)
69     — Map of SVG elements to allowed attributes
70 *   [`html-element-attributes`](https://github.com/wooorm/html-element-attributes)
71     — Map of HTML elements to allowed attributes
72 *   [`aria-attributes`](https://github.com/wooorm/aria-attributes)
73     — List of ARIA attributes
74
75 ## License
76
77 [MIT][license] © [Titus Wormer][author]
78
79 <!-- Definition -->
80
81 [build-badge]: https://img.shields.io/travis/wooorm/mathml-tag-names.svg
82
83 [build]: https://travis-ci.org/wooorm/mathml-tag-names
84
85 [downloads-badge]: https://img.shields.io/npm/dm/mathml-tag-names.svg
86
87 [downloads]: https://www.npmjs.com/package/mathml-tag-names
88
89 [size-badge]: https://img.shields.io/bundlephobia/minzip/mathml-tag-names.svg
90
91 [size]: https://bundlephobia.com/result?p=mathml-tag-names
92
93 [npm]: https://docs.npmjs.com/cli/install
94
95 [license]: license
96
97 [author]: https://wooorm.com
98
99 [mathml1]: https://www.w3.org/TR/1998/REC-MathML-19980407/appendixF.html
100
101 [mathml2]: https://www.w3.org/TR/MathML2/appendixl.html
102
103 [mathml3]: https://www.w3.org/TR/MathML3/appendixi.html