{"id":15413469,"url":"https://github.com/wooorm/mathml-tag-names","last_synced_at":"2025-04-19T11:40:05.029Z","repository":{"id":57292446,"uuid":"54260151","full_name":"wooorm/mathml-tag-names","owner":"wooorm","description":"List of known MathML tag names","archived":false,"fork":false,"pushed_at":"2025-02-17T13:39:06.000Z","size":102,"stargazers_count":5,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-29T07:22:34.789Z","etag":null,"topics":["element","mathml","name","tag"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wooorm.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":"funding.yml","license":"license","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":"wooorm"}},"created_at":"2016-03-19T10:27:23.000Z","updated_at":"2025-02-17T13:39:08.000Z","dependencies_parsed_at":"2024-06-18T18:56:01.533Z","dependency_job_id":"eea84499-2916-4ee2-85d3-71950feed661","html_url":"https://github.com/wooorm/mathml-tag-names","commit_stats":{"total_commits":70,"total_committers":2,"mean_commits":35.0,"dds":0.05714285714285716,"last_synced_commit":"4d50382ce227b64ce3e4b2d7a66288c078e9c921"},"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wooorm%2Fmathml-tag-names","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wooorm%2Fmathml-tag-names/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wooorm%2Fmathml-tag-names/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wooorm%2Fmathml-tag-names/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wooorm","download_url":"https://codeload.github.com/wooorm/mathml-tag-names/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248750074,"owners_count":21155685,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["element","mathml","name","tag"],"created_at":"2024-10-01T16:57:14.243Z","updated_at":"2025-04-19T11:40:04.980Z","avatar_url":"https://github.com/wooorm.png","language":"JavaScript","readme":"# mathml-tag-names\n\n[![Build][badge-build-image]][badge-build-url]\n[![Coverage][badge-coverage-image]][badge-coverage-url]\n[![Downloads][badge-downloads-image]][badge-downloads-url]\n[![Size][badge-size-image]][badge-size-url]\n\nList of known MathML tag names.\n\n## Contents\n\n* [What is this?](#what-is-this)\n* [When should I use this?](#when-should-i-use-this)\n* [Install](#install)\n* [Use](#use)\n* [API](#api)\n  * [`mathmlTagNames`](#mathmltagnames)\n* [Types](#types)\n* [Compatibility](#compatibility)\n* [Security](#security)\n* [Related](#related)\n* [Contribute](#contribute)\n* [License](#license)\n\n## What is this?\n\nThis is a list of MathML tag names.\nIt includes all tag names from [MathML 1][w3-mathml1],\n[MathML 2][w3-mathml2],\n[MathML 3][w3-mathml3],\nand\n[MathML 4][w3-mathml4].\nThe repo includes scripts to regenerate the data from the specs.\n\n## When should I use this?\n\nYou can use this package when you need to know what tag names are allowed in\nany version of MathML.\n\n## Install\n\nThis package is [ESM only][github-gist-esm].\nIn Node.js (version 16+),\ninstall with [npm][npmjs-install]:\n\n```sh\nnpm install mathml-tag-names\n```\n\nIn Deno with [`esm.sh`][esmsh]:\n\n```js\nimport {mathmlTagNames} from 'https://esm.sh/mathml-tag-names@4'\n```\n\nIn browsers with [`esm.sh`][esmsh]:\n\n```html\n\u003cscript type=\"module\"\u003e\n  import {mathmlTagNames} from 'https://esm.sh/mathml-tag-names@4?bundle'\n\u003c/script\u003e\n```\n\n## Use\n\n```js\nimport {mathmlTagNames} from 'mathml-tag-names'\n\nconsole.log(mathmlTagNames.length) // =\u003e 201\n\nconsole.log(mathmlTagNames.slice(0, 10))\n```\n\nYields:\n\n```js\n[\n  'abs',\n  'and',\n  'annotation',\n  'annotation-xml',\n  'apply',\n  'approx',\n  'arccos',\n  'arccosh',\n  'arccot',\n  'arccoth'\n]\n```\n\n## API\n\nThis package exports the identifier `mathmlTagNames`.\nThere is no default export.\n\n### `mathmlTagNames`\n\nList of known (lowercase) MathML tag names (`ReadonlyArray\u003cstring\u003e`).\n\n## Types\n\nThis package is fully typed with [TypeScript][].\nIt exports no additional types.\n\n## Compatibility\n\nThis package is at least compatible with all maintained versions of Node.js.\nAs of now,\nthat is Node.js 16+.\nIt also works in Deno and modern browsers.\n\n## Security\n\nThis package is safe.\n\n## Related\n\n* [`wooorm/html-tag-names`](https://github.com/wooorm/html-tag-names)\n  — list of HTML tag names\n* [`wooorm/svg-tag-names`](https://github.com/wooorm/svg-tag-names)\n  — list of SVG tag names\n* [`wooorm/svg-element-attributes`](https://github.com/wooorm/svg-element-attributes)\n  — map of SVG elements to attributes\n* [`wooorm/html-element-attributes`](https://github.com/wooorm/html-element-attributes)\n  — map of HTML elements to attributes\n* [`wooorm/aria-attributes`](https://github.com/wooorm/aria-attributes)\n  — list of ARIA attributes\n\n## Contribute\n\nYes please!\nSee [*How to Contribute to Open Source*][opensource-guide].\n\n## License\n\n[MIT][file-license] © [Titus Wormer][wooorm]\n\n\u003c!-- Definition --\u003e\n\n[badge-build-image]: https://github.com/wooorm/mathml-tag-names/workflows/main/badge.svg\n\n[badge-build-url]: https://github.com/wooorm/mathml-tag-names/actions\n\n[badge-coverage-image]: https://img.shields.io/codecov/c/github/wooorm/mathml-tag-names.svg\n\n[badge-coverage-url]: https://codecov.io/github/wooorm/mathml-tag-names\n\n[badge-downloads-image]: https://img.shields.io/npm/dm/mathml-tag-names.svg\n\n[badge-downloads-url]: https://www.npmjs.com/package/mathml-tag-names\n\n[badge-size-image]: https://img.shields.io/bundlejs/size/mathml-tag-names\n\n[badge-size-url]: https://bundlejs.com/?q=mathml-tag-names\n\n[esmsh]: https://esm.sh\n\n[file-license]: license\n\n[github-gist-esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c\n\n[npmjs-install]: https://docs.npmjs.com/cli/install\n\n[opensource-guide]: https://opensource.guide/how-to-contribute/\n\n[typescript]: https://www.typescriptlang.org\n\n[w3-mathml1]: https://www.w3.org/TR/1998/REC-MathML-19980407/appendixF.html\n\n[w3-mathml2]: https://www.w3.org/TR/MathML2/appendixl.html\n\n[w3-mathml3]: https://www.w3.org/TR/MathML3/appendixi.html\n\n[w3-mathml4]: https://www.w3.org/TR/mathml4/#mmlindex_elements\n\n[wooorm]: https://wooorm.com\n","funding_links":["https://github.com/sponsors/wooorm"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwooorm%2Fmathml-tag-names","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwooorm%2Fmathml-tag-names","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwooorm%2Fmathml-tag-names/lists"}