https://github.com/jamesplease/katex-support.js
Generate lists of the functions and symbols that KaTeX supports.
https://github.com/jamesplease/katex-support.js
Last synced: 3 months ago
JSON representation
Generate lists of the functions and symbols that KaTeX supports.
- Host: GitHub
- URL: https://github.com/jamesplease/katex-support.js
- Owner: jamesplease
- License: mit
- Created: 2014-09-24T04:12:46.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-09-24T04:33:55.000Z (almost 11 years ago)
- Last Synced: 2025-02-07T09:41:58.592Z (5 months ago)
- Language: JavaScript
- Homepage:
- Size: 191 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# katex-support.js
Generates lists of the functions and symbols that [KaTeX](https://github.com/Khan/KaTeX) supports.
## Installation
Install via npm.
```js
npm install katex-support
```## Usage
This package exports an object with three keys: `textSymbols`, `mathSymbols`, and `functions`. Each key is an array
of the supported symbols of that type.```js
var katexSupport = require('katex-support');var supportedMathSymbols = katexSupport.mathSymbols;
var supportedTextSymbols = katexSupport.textSymbols;
var supportedFunctions = katexSupport.functions;
```