wooorm / mathml-tag-names

List of known MathML tag names

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

mathml-tag-names

Build Coverage Downloads Size

List of known MathML tag names.

Contents

What is this?

This is a list of MathML tag names. It includes all tag names from MathML 1, MathML 2, and MathML 3. The repo includes scripts to regenerate the data from the specs.

When should I use this?

You can use this package when you need to know what tag names are allowed in any version of MathML.

Install

This package is ESM only. In Node.js (version 14.14+, 16.0+), install with npm:

npm install mathml-tag-names

In Deno with esm.sh:

import {mathmlTagNames} from 'https://esm.sh/mathml-tag-names@3'

In browsers with esm.sh:

<script type="module">
  import {mathmlTagNames} from 'https://esm.sh/mathml-tag-names@3?bundle'
</script>

Use

import {mathmlTagNames} from 'mathml-tag-names'

console.log(mathmlTagNames.length) // => 189

console.log(mathmlTagNames.slice(0, 10))

Yields:

[
  'abs',
  'and',
  'annotation',
  'annotation-xml',
  'apply',
  'approx',
  'arccos',
  'arccosh',
  'arccot',
  'arccoth'
]

API

This package exports the identifier mathmlTagNames. There is no default export.

mathmlTagNames

List of known (lowercase) MathML tag names (Array<string>).

Types

This package is fully typed with TypeScript. It exports no additional types.

Compatibility

This package is at least compatible with all maintained versions of Node.js. As of now, that is Node.js 14.14+ and 16.0+. It also works in Deno and modern browsers.

Security

This package is safe.

Related

Contribute

Yes please! See How to Contribute to Open Source.

License

MIT © Titus Wormer

About

List of known MathML tag names

License:MIT License


Languages

Language:JavaScript 100.0%