diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index b52fc810..9a2b0904 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -54,3 +54,35 @@ jobs:
with:
directory: ./coverage/
timeout-minutes: 3
+
+ release:
+ runs-on: ubuntu-latest
+ if: github.event_name == 'push'
+ environment: release
+ needs: test
+
+ steps:
+ - uses: actions/checkout@v2
+ with:
+ submodules: recursive
+ fetch-depth: 0
+
+ - name: Use Node.js 12.x
+ uses: actions/setup-node@v1
+ with:
+ node-version: '12'
+
+ - name: Cache dependencies
+ uses: actions/cache@v2
+ with:
+ path: |
+ .yarn/cache
+ .pnp.js
+ key: yarn-deps-v1-${{ hashFiles('yarn.lock') }}
+ restore-keys: |
+ yarn-deps-v1-
+ - name: Run semantic-release
+ run: yarn run semantic-release --debug
+ env:
+ GH_TOKEN: ${{ secrets.GH_TOKEN }}
+ NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
diff --git a/.gitignore b/.gitignore
index bcc7a2cc..683dd5a9 100644
--- a/.gitignore
+++ b/.gitignore
@@ -18,6 +18,7 @@ coverage/
docs/cli.md
lib/core/metadata.js
lib/core/MetadataBlog.js
+website/prev-versions.json
website/translated_docs
website/build/
website/node_modules
diff --git a/.releaserc b/.releaserc
new file mode 100644
index 00000000..ff2e03a9
--- /dev/null
+++ b/.releaserc
@@ -0,0 +1,25 @@
+{
+ "plugins": [
+ ["@semantic-release/commit-analyzer", {
+ "releaseRules": [
+ {breaking: true, release: 'minor'},
+ {type: 'feat', release: 'patch'},
+ ],
+ }],
+ "@semantic-release/release-notes-generator",
+ ["@semantic-release/changelog", {
+ "changelogTitle": "# Changelog\nAll notable changes to this project will be documented in this file. This CHANGELOG roughly follows the guidelines from [www.keepachangelog.com](https://keepachangelog.com/en/1.0.0/).",
+ }],
+ "@semantic-release/npm",
+ ["@semantic-release/git", {
+ "assets": ["dist", "docs", "package.json", "CHANGELOG.md", "README.md", "contrib/*/README.md", "website/pages/index.html"],
+ "message": "chore(release): ${nextRelease.version} [ci skip]\n\n${nextRelease.notes}",
+ }],
+ ["@semantic-release/github", {
+ "assets": [
+ {path: 'katex.tar.gz', label: 'tarball'},
+ {path: 'katex.zip', label: 'zip'},
+ ],
+ }],
+ ],
+}
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 18039c1f..fd5621e8 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -145,6 +145,7 @@ Flow by running `yarn test:flow`. See [Flow](https://flow.org/) for more details
## Pull Requests
+ - PR title and description should follow [Angular Commit Message Conventions](https://github.com/angular/angular.js/blob/master/DEVELOPERS.md#-git-commit-guidelines)
- link back to the original issue(s) whenever possible
- new commands should be added to `docs/support_table.md` and `docs/supported.md`
- commits should be squashed before merging
diff --git a/README.md b/README.md
index fdba347c..a243f01a 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,6 @@
# [](https://katex.org/)
[](https://www.npmjs.com/package/katex)
+[](https://github.com/semantic-release/semantic-release)
[](https://github.com/KaTeX/KaTeX/actions?query=workflow%3ACI)
[](https://codecov.io/gh/KaTeX/KaTeX)
[](https://github.com/KaTeX/KaTeX/discussions)
diff --git a/docs/support_table.md b/docs/support_table.md
index 655ad264..10999f1e 100644
--- a/docs/support_table.md
+++ b/docs/support_table.md
@@ -6,7 +6,7 @@ This is a list of TeX functions, sorted alphabetically. This list includes funct
If you know the shape of a character, but not its name, [Detexify](http://detexify.kirelabs.org/classify.html) can help.
-
+
-
- The KaTeX stylesheet is not loaded!
- KaTeX stylesheet version:
-
-```
-
-If it is loaded properly, it'll show its version. Make sure its version matches
-the version of the JavaScript file (katex.js), which is defined in `katex.version`.
-If it is not loaded properly, it'll show:
-
-> The KaTeX stylesheet is not loaded!
diff --git a/website/versioned_docs/version-0.10.0/libs.md b/website/versioned_docs/version-0.10.0/libs.md
deleted file mode 100644
index 64879a00..00000000
--- a/website/versioned_docs/version-0.10.0/libs.md
+++ /dev/null
@@ -1,41 +0,0 @@
----
-id: version-0.10.0-libs
-title: Extensions & Libraries
-original_id: libs
----
-## Extensions
-
-These extensions are provided by KaTeX.
-
-- [Auto-render](autorender.md): Automatically renders all of the math inside text
-- [Copy-tex](https://github.com/KaTeX/KaTeX/tree/master/contrib/copy-tex): When selecting and copying KaTeX-rendered elements, copies their LaTeX source to the clipboard
-- [`math/tex` Custom Script Type](https://github.com/KaTeX/KaTeX/tree/master/contrib/mathtex-script-type): Automatically displays LaTeX math inside `script` tags with `type=math/tex`
-
-## Libraries
-
-These libraries are maintained by third-parties.
-
-### Angular2+
-- [ng-katex](https://github.com/garciparedes/ng-katex): Angular module to write beautiful math expressions with TeX syntax boosted by KaTeX library
-
-### iOS
-- [KaTeX-iOS](https://github.com/ianarawjo/KaTeX-iOS): iOS UIView that renders TeX expressions with KaTeX
-
-### React
-- [react-latex](https://github.com/zzish/react-latex): React component to render latex strings, based on KaTeX
-- [react-katex](https://github.com/talyssonoc/react-katex): React components that use KaTeX to typeset math expressions
-
-### Ruby
-
-- [katex-ruby](https://github.com/glebm/katex-ruby): Provides server-side rendering and integration with popular Ruby web frameworks (Rails, Hanami, and anything that uses Sprockets).
-
-### AsciiMath
-
-If you want to render math written in [AsciiMath](http://asciimath.org/),
-you'll need to first convert AsciiMath into LaTeX input, then call KaTeX.
-
-- [asciimath2tex](https://github.com/christianp/asciimath2tex): Converts AsciiMath to TeX, with KaTeX in mind
-
-### Canvas LaTeX
-
-- [canvas-latex](https://github.com/CurriculumAssociates/canvas-latex): Renders mathematical expressions on HTML5's canvas element. Supports popular libraries like: CreateJS, and PIXI.
diff --git a/website/versioned_docs/version-0.10.0/node.md b/website/versioned_docs/version-0.10.0/node.md
deleted file mode 100644
index 1400264c..00000000
--- a/website/versioned_docs/version-0.10.0/node.md
+++ /dev/null
@@ -1,69 +0,0 @@
----
-id: version-0.10.0-node
-title: Node.js
-original_id: node
----
-## Installation
-### npm
-Install with `npm`:
-
-```bash
-npm install katex
-# or globally
-npm install -g katex
-```
-
-### Yarn
-Install with `Yarn`:
-
-```bash
-yarn add katex
-# or globally
-yarn global add katex
-```
-
-### Building from Source
-To build you will need Git, Node.js 6.9 or later, and Yarn.
-
-Clone a copy of the GitHub source repository:
-```bash
-git clone https://github.com/KaTeX/KaTeX.git
-cd KaTeX
-```
-
-Then install dependencies and run `build` script:
-```bash
-yarn
-yarn build
-```
-
-If you'd like to use the built KaTeX in other projects, install the package by
-specifying the path:
-```bash
-yarn add /path/to/KaTeX
-# or using npm
-npm install /path/to/KaTeX
-```
-
-> You can manually download the package and source code from
-[GitHub releases](https://github.com/KaTeX/KaTeX/releases).
-
-## Importing
-KaTeX is exported as a CommonJS module, which can be imported using `require`:
-```js
-const katex = require('katex');
-```
-
-If you're using a module loader, transpiler, or bundler that supports interoperability
-between ECMAScript module and CommonJS module, you can use `import`:
-```js
-import katex from 'katex';
-```
-
-KaTeX also provides an ECMAScript module:
-```js
-import katex from 'katex/dist/katex.mjs'
-```
-
-> The ES module contains ES6 syntaxes and features, and may need transpiling to
-use in old environments:
diff --git a/website/versioned_docs/version-0.10.0/options.md b/website/versioned_docs/version-0.10.0/options.md
deleted file mode 100644
index 007f5d41..00000000
--- a/website/versioned_docs/version-0.10.0/options.md
+++ /dev/null
@@ -1,40 +0,0 @@
----
-id: version-0.10.0-options
-title: Options
-original_id: options
----
-You can provide an object of options as the last argument to [`katex.render` and `katex.renderToString`](api.md). Available options are:
-
-- `displayMode`: `boolean`. If `true` the math will be rendered in display mode, which will put the math in display style (so `\int` and `\sum` are large, for example), and will center the math on the page on its own line. If `false` the math will be rendered in inline mode. (default: `false`)
-- `throwOnError`: `boolean`. If `true` (the default), KaTeX will throw a `ParseError` when it encounters an unsupported command or invalid LaTeX. If `false`, KaTeX will render unsupported commands as text, and render invalid LaTeX as its source code with hover text giving the error, in the color given by `errorColor`.
-- `errorColor`: `string`. A color string given in the format `"#XXX"` or `"#XXXXXX"`. This option determines the color that unsupported commands and invalid LaTeX are rendered in when `throwOnError` is set to `false`. (default: `#cc0000`)
-- `macros`: `object`. A collection of custom macros. Each macro is a property with a name like `\name` (written `"\\name"` in JavaScript) which maps to a string that describes the expansion of the macro, or a function that accepts an instance of `MacroExpander` as first argument and returns the expansion as a string. `MacroExpander` is an internal API and subject to non-backwards compatible changes. See [`src/macros.js`](https://github.com/KaTeX/KaTeX/blob/master/src/macros.js) for its usage. Single-character keys can also be included in which case the character will be redefined as the given macro (similar to TeX active characters). *This object will be modified* if the LaTeX code defines its own macros via `\gdef`, which enables consecutive calls to KaTeX to share state.
-- `colorIsTextColor`: `boolean`. If `true`, `\color` will work like LaTeX's `\textcolor`, and take two arguments (e.g., `\color{blue}{hello}`), which restores the old behavior of KaTeX (pre-0.8.0). If `false` (the default), `\color` will work like LaTeX's `\color`, and take one argument (e.g., `\color{blue}hello`). In both cases, `\textcolor` works as in LaTeX (e.g., `\textcolor{blue}{hello}`).
-- `maxSize`: `number`. All user-specified sizes, e.g. in `\rule{500em}{500em}`, will be capped to `maxSize` ems. If set to `Infinity` (the default), users can make elements and spaces arbitrarily large.
-- `maxExpand`: `number`. Limit the number of macro expansions to the specified number, to prevent e.g. infinite macro loops. If set to `Infinity`, the macro expander will try to fully expand as in LaTeX. (default: 1000)
-- `allowedProtocols`: `string[]`. Allowed protocols in `\href`. Use `_relative` to allow relative urls, and `*` to allow all protocols. (default: `["http", "https", "mailto", "_relative"]`)
-- `strict`: `boolean` or `string` or `function` (default: `"warn"`). If `false` or `"ignore`", allow features that make writing LaTeX convenient but are not actually supported by (Xe)LaTeX (similar to MathJax). If `true` or `"error"` (LaTeX faithfulness mode), throw an error for any such transgressions. If `"warn"` (the default), warn about such behavior via `console.warn`. Provide a custom function `handler(errorCode, errorMsg, token)` to customize behavior depending on the type of transgression (summarized by the string code `errorCode` and detailed in `errorMsg`); this function can also return `"ignore"`, `"error"`, or `"warn"` to use a built-in behavior. A list of such features and their `errorCode`s:
- - `"unknownSymbol"`: Use of unknown Unicode symbol, which will likely also
- lead to warnings about missing character metrics, and layouts may be
- incorrect (especially in terms of vertical heights).
- - `"unicodeTextInMathMode"`: Use of Unicode text characters in math mode.
- - `"mathVsTextUnits"`: Mismatch of math vs. text commands and units/mode.
- - `"commentAtEnd"`: Use of `%` comment without a terminating newline.
- LaTeX would thereby comment out the end of math mode (e.g. `$`),
- causing an error.
- A second category of `errorCode`s never throw errors, but their strictness
- affects the behavior of KaTeX:
- - `"newLineInDisplayMode"`: Use of `\\` or `\newline` in display mode
- (outside an array/tabular environment). In strict mode, no line break
- results, as in LaTeX.
-
-For example:
-
-```js
-katex.render("c = \\pm\\sqrt{a^2 + b^2}\\in\\RR", element, {
- displayMode: true,
- macros: {
- "\\RR": "\\mathbb{R}"
- }
-});
-```
diff --git a/website/versioned_docs/version-0.10.0/security.md b/website/versioned_docs/version-0.10.0/security.md
deleted file mode 100644
index 131663ef..00000000
--- a/website/versioned_docs/version-0.10.0/security.md
+++ /dev/null
@@ -1,21 +0,0 @@
----
-id: version-0.10.0-security
-title: Security
-original_id: security
----
-Any HTML generated by KaTeX *should* be safe from `
-
-```
-
-> Above, the [`defer` attribute](https://developer.mozilla.org/en/HTML/Element/script#Attributes)
-indicates that the script doesn't need to execute until the page has loaded,
-speeding up page rendering; and the `onload` attribute calls
-`renderMathInElement` once the auto-render script loads.
-
-Alternatively, you can call the `renderMathInElement` when (or after) the
-[`DOMContentLoaded` event](https://developer.mozilla.org/ko/docs/Web/Reference/Events/DOMContentLoaded)
-fires on the document or in another deferred script.
-This approach is useful for specifying or computing options, or if you don't
-want to use a `defer` or `onload` attribute.
-For example:
-
-```html
-
-
-
-
-```
-
-ECMAScript module is also available:
-```html
-
-
-
-> You can use [`nomodule` attribute](https://developer.mozilla.org/en/HTML/Element/script#Attributes)
-to provide a fallback for older browsers that do not support ES modules. -->
-
-## API
-This extension exposes a single function, `window.renderMathInElement`, with
-the following API:
-
-```js
-function renderMathInElement(elem, options)
-```
-
-`elem` is an HTML DOM element. The function will recursively search for text
-nodes inside this element and render the math in them.
-
-`options` is an optional object argument that can have the same keys as [the
-object passed to `katex.render`](https://github.com/KaTeX/KaTeX/#rendering-options),
-in addition to several auto-render-specific keys:
-
-- `delimiters`: This is a list of delimiters to look for math. Each delimiter
- has three properties:
-
- - `left`: A string which starts the math expression (i.e. the left delimiter).
- - `right`: A string which ends the math expression (i.e. the right delimiter).
- - `display`: A boolean of whether the math in the expression should be
- rendered in display mode or not.
-
- The default value is:
-
- ```js
- [
- {left: "$$", right: "$$", display: true},
- {left: "\\(", right: "\\)", display: false},
- {left: "\\[", right: "\\]", display: true}
- ]
- ```
-
-- `ignoredTags`: This is a list of DOM node types to ignore when recursing
- through. The default value is
- `["script", "noscript", "style", "textarea", "pre", "code"]`.
-
-- `ignoredClasses`: This is a list of DOM node class names to ignore when
- recursing through. By default, this value is not set.
-
-- `errorCallback`: A callback method returning a message and an error stack
- in case of an critical error during rendering. The default uses `console.error`.
-
-- `preProcess`: A callback function, `(math: string) => string`, used to process
- math expressions before rendering.
-
-The `displayMode` property of the options object is ignored, and is
-instead taken from the `display` key of the corresponding entry in the
-`delimiters` key.
-
-The same `options.macros` object (which defaults to an empty object `{}`)
-is passed into several calls to `katex.render`, so that consecutive equations
-can build up shared macros by `\gdef`.
diff --git a/website/versioned_docs/version-0.10.1/browser.md b/website/versioned_docs/version-0.10.1/browser.md
deleted file mode 100644
index 0e94d2ba..00000000
--- a/website/versioned_docs/version-0.10.1/browser.md
+++ /dev/null
@@ -1,99 +0,0 @@
----
-id: version-0.10.1-browser
-title: Browser
-original_id: browser
----
-> KaTeX supports all major browsers, including Chrome, Safari, Firefox, Opera, Edge, and IE 9–11.
-
-## Global
-If you include the `katex.js` directly, the `katex` object will be available as
-a global variable.
-
-```html
-
-
-```
-
-KaTeX also provides minified versions:
-
-```html
-
-
-```
-
-The loading of scripts are [deferred using `defer` attribute](https://developer.mozilla.org/en/HTML/Element/script#Attributes)
-to speed up page rendering. The `katex` object will be available after
-[`DOMContentLoaded` event is fired on the `document`](https://developer.mozilla.org/ko/docs/Web/Reference/Events/DOMContentLoaded).
-If you do not use `defer`, `katex` object will be available after corresponding
-`script` tag.
-
-If KaTeX is not used immediately or not critical, it is possible to load KaTeX
-asynchronously. Add [`async` attribute](https://developer.mozilla.org/en/HTML/Element/script#Attributes)
-to `script` and use [`rel="preload"` and `onload` attribute](https://github.com/filamentgroup/loadCSS)
-on `link`.
-
-You can prefetch KaTeX fonts to prevent FOUT or FOIT. Use [Font Loading API](https://developer.mozilla.org/en-US/docs/Web/API/CSS_Font_Loading_API)
-or [Web Font Loader](https://github.com/typekit/webfontloader):
-
-```html
-
-
-```
-
-You can also use [`rel="preload"`](https://developer.mozilla.org/en-US/docs/Web/HTML/Preloading_content).
-Add ``
-to `head`. Note that [only few browsers support it](https://caniuse.com/#feat=link-rel-preload)
-and they all support WOFF2 so preloading WOFF2 fonts is enough.
-
-See [Google Web Fundamentals - Web Font Optimization](https://developers.google.com/web/fundamentals/performance/optimizing-content-efficiency/webfont-optimization)
-for more detail.
-
-## Module Loaders
-### AMD
-```html
-
-
-```
-
-### ECMAScript module
-```html
-
-
-
-```
-
-> Use [`nomodule` attribute](https://developer.mozilla.org/en/HTML/Element/script#Attributes)
-to provide a fallback for older browsers that do not support ES modules.
-
-## Download & Host Things Yourself
-Download a [KaTeX release](https://github.com/KaTeX/KaTeX/releases),
-copy `katex.js`, `katex.css`
-(or `katex.min.js` and `katex.min.css` to use minified versions),
-and the `fonts` directory, and include or import it like above.
-
-You can also build from source. See [Building from Source](node.md#building-from-source)
-for more details.
-
-## Bundler
-[Use Node.js package managers to install KaTeX and import it](node.md) in your
-project. Then bundle using bundlers like [webpack](https://webpack.js.org/) or
-[rollup.js](https://rollupjs.org/). Note that you have to bundle the stylesheet
-(`katex.css`) or include it manually.
diff --git a/website/versioned_docs/version-0.10.1/cli.md b/website/versioned_docs/version-0.10.1/cli.md
deleted file mode 100644
index 26218e93..00000000
--- a/website/versioned_docs/version-0.10.1/cli.md
+++ /dev/null
@@ -1,67 +0,0 @@
----
-id: version-0.10.1-cli
-title: CLI
-original_id: cli
----
-
-KaTeX installed [using Node.js package managers](node.md) comes with a
-built-in command-line interface (CLI) which can be used to render TeX to HTML.
-By default, CLI will take the input from standard input.
-
-```bash
-npx katex
-```
-
-> Above uses the `npx` command to run the locally installed executable
-after `npm install katex`. You can also execute with the relative path:
-`./node_modules/.bin/katex`
-
-> To use the CLI from local Git clone, you need to build the project first.
-See [Building from Source](node.md#building-from-source) for more details.
-
-## Options
-
-### `-V, --version`
-output the version number
-
-### `-d, --display-mode`
-Render math in display mode, which puts the math in display style (so \int and \sum are large, for example), and centers the math on the page on its own line.
-
-### `--leqno`
-Render display math in leqno style (left-justified tags).
-
-### `--fleqn`
-Render display math flush left.
-
-### `-t, --no-throw-on-error`
-Render errors (in the color given by --error-color) instead of throwing a ParseError exception when encountering an error.
-
-### `-c, --error-color `
-A color string given in the format 'rgb' or 'rrggbb' (no #). This option determines the color of errors rendered by the -t option. (default: #cc0000)
-
-### `-b, --color-is-text-color`
-Makes \color behave like LaTeX's 2-argument \textcolor, instead of LaTeX's one-argument \color mode change.
-
-### `-S, --strict`
-Turn on strict / LaTeX faithfulness mode, which throws an error if the input uses features that are not supported by LaTeX
-
-### `-s, --max-size `
-If non-zero, all user-specified sizes, e.g. in \rule{500em}{500em}, will be capped to maxSize ems. Otherwise, elements and spaces can be arbitrarily large (default: Infinity)
-
-### `-e, --max-expand `
-Limit the number of macro expansions to the specified number, to prevent e.g. infinite macro loops. If set to Infinity, the macro expander will try to fully expand as in LaTeX.
-
-### `-m, --macro `
-Define custom macro of the form '\foo:expansion' (use multiple -m arguments for multiple macros). (default: )
-
-### `-f, --macro-file `
-Read macro definitions, one per line, from the given file.
-
-### `-i, --input `
-Read LaTeX input from the given file.
-
-### `-o, --output `
-Write html output to the given file.
-
-### `-h, --help`
-Output usage information
diff --git a/website/versioned_docs/version-0.10.1/font.md b/website/versioned_docs/version-0.10.1/font.md
deleted file mode 100644
index 0f2e579d..00000000
--- a/website/versioned_docs/version-0.10.1/font.md
+++ /dev/null
@@ -1,47 +0,0 @@
----
-id: version-0.10.1-font
-title: Font
-original_id: font
----
-By changing the variables in the `fonts.less` file at the [katex-fonts submodule](https://github.com/KaTeX/katex-fonts/),
-several properties of the way fonts are used can be changed.
-
-## Font size and lengths
-By default, KaTeX math is rendered in a 1.21× larger font than the surrounding
-context, which makes super- and subscripts easier to read. You can control
-this using CSS, for example, to set to 1.1×:
-
-```css
-.katex { font-size: 1.1em; }
-```
-
-KaTeX supports all TeX units, including absolute units like `cm` and `in`.
-Absolute units are currently scaled relative to the default TeX font size of
-10pt, so that `\kern1cm` produces the same results as `\kern2.845275em`.
-As a result, relative and absolute units are both uniformly scaled relative
-to LaTeX with a 10pt font; for example, the rectangle `\rule{1cm}{1em}` has
-the same aspect ratio in KaTeX as in LaTeX. However, because most browsers
-default to a larger font size, this typically means that a 1cm kern in KaTeX
-will appear larger than 1cm in browser units.
-
-## Kinds of fonts used
-
-KaTeX provides fonts in three different formats: `ttf`, `woff`, and `woff2`.
-
-- `ttf`s are included to support very old browsers and local installation. [Browser support](https://caniuse.com/#feat=ttf)
-- `woff` is the format that is most widely supported (all modern browsers support it), so it probably provides the most benefit to being included. [Browser support](https://caniuse.com/#feat=woff)
-- `woff2`s are included for modern browsers, because they are much smaller and faster to load. [Browser support](https://caniuse.com/#feat=woff2)
-
-KaTeX will automatically include only necessary fonts for target environments
-specified by [Browserslist config](https://github.com/browserslist/browserslist#queries).
-
-To force a font type to be included or excluded, set `USE_(FONT NAME)` environment
-variable to `"true"` or `"false"`, respectively.`
-
-## Location of font files
-
-The default build of KaTeX expects the KaTeX fonts to be located in a directory called `fonts` which is a sibling of the `katex.min.css` stylesheet. This can be changed as follows:
-
-1. At the top of the [fonts.less](https://github.com/KaTeX/katex-fonts/blob/master/fonts.less) file, set `@font-folder` to the location of your fonts. You can use relative or absolute paths, so setting it to `"/fonts"` would cause it to search for the fonts in a root `fonts` folder, while `"../fonts"` would search in a `fonts` directory one level above the `katex.min.css` file.
-2. Rebuild KaTeX by running `yarn build` from the top-level directory.
-3. Use the newly generated `build/katex.min.css` file, and place the fonts where you indicated.
diff --git a/website/versioned_docs/version-0.10.1/libs.md b/website/versioned_docs/version-0.10.1/libs.md
deleted file mode 100644
index 353b4d64..00000000
--- a/website/versioned_docs/version-0.10.1/libs.md
+++ /dev/null
@@ -1,45 +0,0 @@
----
-id: version-0.10.1-libs
-title: Extensions & Libraries
-original_id: libs
----
-## Extensions
-
-These extensions are provided by KaTeX.
-
-- [Auto-render](autorender.md): Automatically renders all of the math inside text
-- [Copy-tex](https://github.com/Khan/KaTeX/tree/master/contrib/copy-tex): When selecting and copying KaTeX-rendered elements, copies their LaTeX source to the clipboard
-- [`math/tex` Custom Script Type](https://github.com/Khan/KaTeX/tree/master/contrib/mathtex-script-type): Automatically displays LaTeX math inside `script` tags with `type=math/tex`
-- [mhchem](https://github.com/Khan/KaTeX/tree/master/contrib/mhchem): Write beautiful chemical equations easily
-
-## Libraries
-
-These libraries are maintained by third-parties.
-
-### Angular2+
-- [ng-katex](https://github.com/garciparedes/ng-katex): Angular module to write beautiful math expressions with TeX syntax boosted by KaTeX library
-
-### iOS
-- [KaTeX-iOS](https://github.com/ianarawjo/KaTeX-iOS): iOS UIView that renders TeX expressions with KaTeX
-
-### React
-- [react-latex](https://github.com/zzish/react-latex): React component to render latex strings, based on KaTeX
-- [react-katex](https://github.com/talyssonoc/react-katex): React components that use KaTeX to typeset math expressions
-
-### Ruby
-
-- [katex-ruby](https://github.com/glebm/katex-ruby): Provides server-side rendering and integration with popular Ruby web frameworks (Rails, Hanami, and anything that uses Sprockets).
-
-### Vue
-- [vue-katex](https://github.com/lucpotage/vue-katex): Vue plugin to render TeX expressions using KaTeX.
-
-### AsciiMath
-
-If you want to render math written in [AsciiMath](http://asciimath.org/),
-you'll need to first convert AsciiMath into LaTeX input, then call KaTeX.
-
-- [asciimath2tex](https://github.com/christianp/asciimath2tex): Converts AsciiMath to TeX, with KaTeX in mind
-
-### Canvas LaTeX
-
-- [canvas-latex](https://github.com/CurriculumAssociates/canvas-latex): Renders mathematical expressions on HTML5's canvas element. Supports popular libraries like: CreateJS, and PIXI.
diff --git a/website/versioned_docs/version-0.10.1/node.md b/website/versioned_docs/version-0.10.1/node.md
deleted file mode 100644
index 949f5bc2..00000000
--- a/website/versioned_docs/version-0.10.1/node.md
+++ /dev/null
@@ -1,79 +0,0 @@
----
-id: version-0.10.1-node
-title: Node.js
-original_id: node
----
-## Installation
-### npm
-Install with `npm`:
-
-```bash
-npm install katex
-# or globally
-npm install -g katex
-```
-
-### Yarn
-Install with `Yarn`:
-
-```bash
-yarn add katex
-# or globally
-yarn global add katex
-```
-
-### Building from Source
-To build you will need Git, Node.js 6.9 or later, and Yarn.
-
-Clone a copy of the GitHub source repository:
-```bash
-git clone https://github.com/KaTeX/KaTeX.git
-cd KaTeX
-```
-
-Then install dependencies and run `build` script:
-```bash
-yarn
-yarn build
-```
-
-It will automatically transpile code and include only necessary fonts for
-target environments specified by [Browserslist config](https://github.com/browserslist/browserslist#environment-variables).
-For example, if you are making a web app for a kiosk with Chrome 68, run
-`BROWSERSLIST="Chrome 68" yarn build` and it will produce build with no
-transpilation, as it fully supports ES6, and only include WOFF2 fonts.
-
-You can override included fonts using environment variables. Set `USE_(FONT NAME)`
-environment variable to `"true"` or `"false"`, to force a font type to be included
-or excluded, respectively.`
-
-If you'd like to use the built KaTeX in other projects, install the package by
-specifying the path:
-```bash
-yarn add /path/to/KaTeX
-# or using npm
-npm install /path/to/KaTeX
-```
-
-> You can manually download the package and source code from
-[GitHub releases](https://github.com/KaTeX/KaTeX/releases).
-
-## Importing
-KaTeX is exported as a CommonJS module, which can be imported using `require`:
-```js
-const katex = require('katex');
-```
-
-If you're using a module loader, transpiler, or bundler that supports interoperability
-between ECMAScript module and CommonJS module, you can use `import`:
-```js
-import katex from 'katex';
-```
-
-KaTeX also provides an ECMAScript module:
-```js
-import katex from 'katex/dist/katex.mjs'
-```
-
-> The ES module contains ES6 syntaxes and features, and may need transpiling to
-use in old environments:
diff --git a/website/versioned_docs/version-0.10.1/options.md b/website/versioned_docs/version-0.10.1/options.md
deleted file mode 100644
index 5369ff33..00000000
--- a/website/versioned_docs/version-0.10.1/options.md
+++ /dev/null
@@ -1,43 +0,0 @@
----
-id: version-0.10.1-options
-title: Options
-original_id: options
----
-You can provide an object of options as the last argument to [`katex.render` and `katex.renderToString`](api.md). Available options are:
-
-- `displayMode`: `boolean`. If `true` the math will be rendered in display mode, which will put the math in display style (so `\int` and `\sum` are large, for example), and will center the math on the page on its own line. If `false` the math will be rendered in inline mode. (default: `false`)
-- `leqno`: `boolean`. If `true`, display math has `\tag`s rendered on the left instead of the right, like `\usepackage[leqno]{amsmath}` in LaTeX.
-- `fleqn`: `boolean`. If `true`, display math renders flush left, like `\documentclass[fleqn]` in LaTeX.
-- `throwOnError`: `boolean`. If `true` (the default), KaTeX will throw a `ParseError` when it encounters an unsupported command or invalid LaTeX. If `false`, KaTeX will render unsupported commands as text, and render invalid LaTeX as its source code with hover text giving the error, in the color given by `errorColor`.
-- `errorColor`: `string`. A color string given in the format `"#XXX"` or `"#XXXXXX"`. This option determines the color that unsupported commands and invalid LaTeX are rendered in when `throwOnError` is set to `false`. (default: `#cc0000`)
-- `macros`: `object`. A collection of custom macros. Each macro is a property with a name like `\name` (written `"\\name"` in JavaScript) which maps to a string that describes the expansion of the macro, or a function that accepts an instance of `MacroExpander` as first argument and returns the expansion as a string. `MacroExpander` is an internal API and subject to non-backwards compatible changes. See [`src/macros.js`](https://github.com/KaTeX/KaTeX/blob/master/src/macros.js) for its usage. Single-character keys can also be included in which case the character will be redefined as the given macro (similar to TeX active characters). *This object will be modified* if the LaTeX code defines its own macros via `\gdef`, which enables consecutive calls to KaTeX to share state.
-- `colorIsTextColor`: `boolean`. If `true`, `\color` will work like LaTeX's `\textcolor`, and take two arguments (e.g., `\color{blue}{hello}`), which restores the old behavior of KaTeX (pre-0.8.0). If `false` (the default), `\color` will work like LaTeX's `\color`, and take one argument (e.g., `\color{blue}hello`). In both cases, `\textcolor` works as in LaTeX (e.g., `\textcolor{blue}{hello}`).
-- `maxSize`: `number`. All user-specified sizes, e.g. in `\rule{500em}{500em}`, will be capped to `maxSize` ems. If set to `Infinity` (the default), users can make elements and spaces arbitrarily large.
-- `maxExpand`: `number`. Limit the number of macro expansions to the specified number, to prevent e.g. infinite macro loops. If set to `Infinity`, the macro expander will try to fully expand as in LaTeX. (default: 1000)
-- `allowedProtocols`: `string[]`. Allowed protocols in `\href`. Use `_relative` to allow relative urls, and `*` to allow all protocols. (default: `["http", "https", "mailto", "_relative"]`)
-- `strict`: `boolean` or `string` or `function` (default: `"warn"`). If `false` or `"ignore`", allow features that make writing LaTeX convenient but are not actually supported by (Xe)LaTeX (similar to MathJax). If `true` or `"error"` (LaTeX faithfulness mode), throw an error for any such transgressions. If `"warn"` (the default), warn about such behavior via `console.warn`. Provide a custom function `handler(errorCode, errorMsg, token)` to customize behavior depending on the type of transgression (summarized by the string code `errorCode` and detailed in `errorMsg`); this function can also return `"ignore"`, `"error"`, or `"warn"` to use a built-in behavior. A list of such features and their `errorCode`s:
- - `"unknownSymbol"`: Use of unknown Unicode symbol, which will likely also
- lead to warnings about missing character metrics, and layouts may be
- incorrect (especially in terms of vertical heights).
- - `"unicodeTextInMathMode"`: Use of Unicode text characters in math mode.
- - `"mathVsTextUnits"`: Mismatch of math vs. text commands and units/mode.
- - `"commentAtEnd"`: Use of `%` comment without a terminating newline.
- LaTeX would thereby comment out the end of math mode (e.g. `$`),
- causing an error.
-
- A second category of `errorCode`s never throw errors, but their strictness
- affects the behavior of KaTeX:
- - `"newLineInDisplayMode"`: Use of `\\` or `\newline` in display mode
- (outside an array/tabular environment). In strict mode, no line break
- results, as in LaTeX.
-
-For example:
-
-```js
-katex.render("c = \\pm\\sqrt{a^2 + b^2}\\in\\RR", element, {
- displayMode: true,
- macros: {
- "\\RR": "\\mathbb{R}"
- }
-});
-```
diff --git a/website/versioned_docs/version-0.10.1/support_table.md b/website/versioned_docs/version-0.10.1/support_table.md
deleted file mode 100644
index d7388782..00000000
--- a/website/versioned_docs/version-0.10.1/support_table.md
+++ /dev/null
@@ -1,1199 +0,0 @@
----
-id: version-0.10.1-support_table
-title: Support Table
-original_id: support_table
----
-This is a list of TeX functions, sorted alphabetically. This list includes functions that KaTeX supports and some that it doesn't support. There is a similar page, with functions [sorted by type](supported.md).
-
-If you know the shape of a character, but not its name, [Detexify](http://detexify.kirelabs.org/classify.html) can help.
-
-
-
-
-## Symbols
-
-|Symbol/Function | Rendered | Source or Comment|
-|:---------------|:------------|:-----------------|
-|\!|$n!$|`n!`|
-|\\\!|$a\!b$|`a\!b`|
-|#|$\def\bar#1{#1^2} \bar{y}$|`\def\bar#1{#1^2} \bar{y}`|
-|\\#|$\#$||
-|%||`%this is a comment`|
-|\\%|$\%$||
-|&|$\begin{matrix} a & b\cr c & d \end{matrix}$|`\begin{matrix}` `a & b \\` `c & d` `\end{matrix}`|
-|\\&|$\&$||
-|'|$'$||
-|\\\'|$\text{\'{a}}$|`\text{\'{a}}`|
-|(|$($||
-|)|$)$||
-|\\\(…\\\)|$\text{\(\frac a b\)}$|`\text{\(\frac a b\)}`|
-|\\ |$a\ b$|`a\ b`|
-|\\"|$\text{\"{a}}$|`\text{\"{a}}`|
-|\\$|$\text{\textdollar}$||
-|\\,|$a\,\,{b}$|`a\,\,{b}`|
-|\\.|$\text{\.{a}}$|`\text{\.{a}}`|
-|\\:|$a\:\:{b}$|`a\:\:{b}`|
-|\\;|$a\;\;{b}$|a`\;\;{b}`|
-|_|$x_i$|`x_i`|
-|\\_|$\_$||
-|\\\`|$\text{\`{a}}$|\text{\\'{a}}|
-|<|$<$||
-|\\=|$\text{\={a}}$|\text{\\={a}}|
-| >|$>$||
-|\\>|$a\>\>{b}$|`a\>\>{b}`|
-|\[|$[$||
-|\]|$]$||
-|{|${a}$|`{a}`|
-|}|${a}$|`{a}`|
-|\\{|$\{$||
-|\\}|$\}$||
-|||$\vert$||
-|\\||$\Vert$||
-|~|$\text{no~no~no~breaks}$|`\text{no~no~no~breaks}`|
-|\\~|$\text{\~{a}}$|\text{\\~{a}}|
-|\\\\|$\begin{matrix} a & b\\ c & d\end{matrix}$|`\begin{matrix}` `a & b \\` `c & d` `\end{matrix}`|
-|^|$x^i$|`x^i`|
-|\\^|$\text{\^{a}}$|\text{\\^{a}}|
-
-## A
-
-|Symbol/Function | Rendered | Source or Comment|
-|:---------------|:------------|:-----------------|
-|\AA|$\text{\AA}$|`\text{\AA}`|
-|\aa|$\text{\aa}$|`\text{\aa}`|
-|\above|${a \above{2pt} b+1}$|`{a \above{2pt} b+1}`|
-|\abovewithdelims|Not supported||
-|\acute|$\acute e$|`\acute e`|
-|\AE|$\text{\AE}$|`\text{\AE}`|
-|\ae|$\text{\ae}$|`\text{\ae}`|
-|\alef|$\alef$||
-|\alefsym|$\alefsym$||
-|\aleph|$\aleph$||
-|{align}|Not supported|see `{aligned}`|
-|{aligned}|$\begin{aligned}a&=b+c\\d+e&=f\end{aligned}$|`\begin{aligned}` `a&=b+c \\` `d+e&=f` `\end{aligned}`|
-|{alignat}|Not supported|see `{alignedat}`|
-|{alignedat}|$\begin{alignedat}{2}10&x+&3&y=2\\3&x+&13&y=4\end{alignedat}$|`\begin{alignedat}{2}` `10&x+ &3&y = 2 \\` ` 3&x+&13&y = 4` `\end{alignedat}`|
-|\allowbreak|||
-|\Alpha|$\Alpha$||
-|\alpha|$\alpha$||
-|\amalg|$\amalg$||
-|\And|$\And$||
-|\and|Not supported|[Deprecated](https://en.wikipedia.org/wiki/Help:Displaying_a_formula#Deprecated_syntax)|
-|\ang|Not supported|[Deprecated](https://en.wikipedia.org/wiki/Help:Displaying_a_formula#Deprecated_syntax)|
-|\angl|Not supported||
-|\angle|$\angle$||
-|\approx|$\approx$||
-|\approxeq|$\approxeq$||
-|\arccos|$\arccos$||
-|\arcctg|$\arcctg$||
-|\arcsin|$\arcsin$||
-|\arctan|$\arctan$||
-|\arctg|$\arctg$||
-|\arg|$\arg$||
-|\argmax|$\argmax$||
-|\argmin|$\argmin$||
-|{array}|$\begin{array}{cc}a&b\\c&d\end{array}$ | `\begin{array}{cc}` `a & b \\` `c & d` `\end{array}`|
-|\array|Not supported|see `{array}`|
-|\arraystretch|$\def\arraystretch{1.5}\begin{array}{cc}a&b\\c&d\end{array}$|`\def\arraystretch{1.5}` `\begin{array}{cc}` `a & b \\` `c & d` `\end{array}`|
-|\Arrowvert|Not supported||
-|\arrowvert|Not supported||
-|\ast|$\ast$||
-|\asymp|$\asymp$||
-|\atop|${a \atop b}$|`{a \atop b}`|
-|\atopwithdelims|Not supported||
-
-## B
-
-|Symbol/Function | Rendered | Source or Comment|
-|:---------------|:------------|:-----------------|
-|\backepsilon|$\backepsilon$||
-|\backprime|$\backprime$||
-|\backsim|$\backsim$||
-|\backsimeq|$\backsimeq$||
-|\backslash|$\backslash$||
-|\bar|$\bar{y}$|`\bar{y}`|
-|\barwedge|$\barwedge$||
-|\Bbb|$\Bbb{ABC}$|`\Bbb{ABC}` KaTeX supports A-Z & k
-|\Bbbk|$\Bbbk$||
-|\bbox|Not supported||
-|\bcancel|$\bcancel{5}$|`\bcancel{5}`|
-|\because|$\because$||
-|\begin|$\begin{matrix} a & b\\ c & d\end{matrix}$|`\begin{matrix}` `a & b \\` `c & d` `\end{matrix}`|
-|\begingroup|$\begingroup a}$|`\begingroup a}`|
-|\Beta|$\Beta$||
-|\beta|$\beta$||
-|\beth|$\beth$||
-|\between|$\between$||
-|\bf|$\bf AaBb12$|`\bf AaBb12`|
-|\big|$\big(\big)$|`\big(\big)`|
-|\Big|$\Big(\Big)$|`\Big(\Big)`|
-|\bigcap|$\bigcap$||
-|\bigcirc|$\bigcirc$||
-|\bigcup|$\bigcup$||
-|\bigg|$\bigg(\bigg)$|`\bigg(\bigg)`|
-|\Bigg|$\Bigg(\Bigg)$|`\Bigg(\Bigg)`|
-|\biggl|$\biggl($|`\biggl(`|
-|\Biggl|$\Biggl($|`\Biggl(`|
-|\biggm|$\biggm\vert$|`\biggm\vert`|
-|\Biggm|$\Biggm\vert$|`\Biggm\vert`|
-|\biggr|$\biggr)$|`\biggr)`|
-|\Biggr|$\Biggr)$|`\Biggr)`|
-|\bigl|$\bigl($|`\bigl(`|
-|\Bigl|$\Bigl($|`\Bigl(`|
-|\bigm|$\bigm\vert$|`\bigm\vert`|
-|\Bigm|$\Bigm\vert$|`\Bigm\vert`|
-|\bigodot|$\bigodot$||
-|\bigominus|Not supported|[Issue #1222](https://github.com/KaTeX/KaTeX/issues/1222)|
-|\bigoplus|$\bigoplus$||
-|\bigoslash|Not supported|[Issue #1222](https://github.com/KaTeX/KaTeX/issues/1222)|
-|\bigotimes|$\bigotimes$||
-|\bigr|$\bigr)$|`\bigr)`|
-|\Bigr|$\Bigr)$|`\Bigr)`|
-|\bigsqcap|Not supported|[Issue #1222](https://github.com/KaTeX/KaTeX/issues/1222)|
-|\bigsqcup|$\bigsqcup$||
-|\bigstar|$\bigstar$||
-|\bigtriangledown|$\bigtriangledown$||
-|\bigtriangleup|$\bigtriangleup$||
-|\biguplus|$\biguplus$||
-|\bigvee|$\bigvee$||
-|\bigwedge|$\bigwedge$||
-|\binom|$\binom n k$|`\binom n k`|
-|\blacklozenge|$\blacklozenge$||
-|\blacksquare|$\blacksquare$||
-|\blacktriangle|$\blacktriangle$||
-|\blacktriangledown|$\blacktriangledown$||
-|\blacktriangleleft|$\blacktriangleleft$||
-|\blacktriangleright|$\blacktriangleright$||
-|\bm|$\bm{AaBb}$|`\bm{AaBb}`|
-|{Bmatrix}|$\begin{Bmatrix}a&b\\c&d\end{Bmatrix}$|`\begin{Bmatrix}` `a & b \\` `c & d` `\end{Bmatrix}`|
-|{bmatrix}|$\begin{bmatrix}a&b\\c&d\end{bmatrix}$|`\begin{bmatrix}` `a & b \\` `c & d` `\end{bmatrix}`|
-|\bmod|$a \bmod b$|`a \bmod b`|
-|\bold|$\bold{AaBb123}$|`\bold{AaBb123}`|
-|\boldsymbol|$\boldsymbol{AaBb}$|`\boldsymbol{AaBb}`|
-|\bot|$\bot$||
-|\bowtie|$\bowtie$||
-|\Box|$\Box$||
-|\boxdot|$\boxdot$||
-|\boxed|$\boxed{ab}$|`\boxed{ab}`|
-|\boxminus|$\boxminus$||
-|\boxplus|$\boxplus$||
-|\boxtimes|$\boxtimes$||
-|\brace|${n\brace k}$|`{n\brace k}`|
-|\bracevert|Not supported||
-|\brack|${n\brack k}$|`{n\brack k}`|
-|\breve|$\breve{eu}$|`\breve{eu}`|
-|\buildrel|Not supported||
-|\bull|$\bull$||
-|\bullet|$\bullet$||
-|\Bumpeq|$\Bumpeq$||
-|\bumpeq|$\bumpeq$||
-
-## C
-
-|Symbol/Function | Rendered | Source or Comment|
-|:---------------|:------------|:-----------------|
-|\C|Not supported|[Deprecated](https://en.wikipedia.org/wiki/Help:Displaying_a_formula#Deprecated_syntax)|
-|\cal|Not supported|See `\mathcal`
-|\cancel|$\cancel{5}$|`\cancel{5}`|
-|\cancelto|Not supported||
-|\Cap|$\Cap$||
-|\cap|$\cap$||
-|{cases}|$\begin{cases}a&\text{if }b\\c&\text{if }d\end{cases}$|`\begin{cases}` `a &\text{if } b \\` `c &\text{if } d` `\end{cases}`|
-|\cases|Not supported|see `{cases}`|
-|{CD}|Not supported||
-|\cdot|$\cdot$||
-|\cdotp|$\cdotp$||
-|\cdots|$\cdots$||
-|\ce |${\mathrm{C}{\vphantom{X}}_{\smash[t]{6}}\mathrm{H}{\vphantom{X}}_{\smash[t]{5}}{-}\mathrm{CHO}}$|`\ce{C6H5-CHO}` Requires an [extension](https://github.com/KaTeX/KaTeX/tree/master/contrib/mhchem/)|
-|\cee|Not supported|Deprecated by mhchem
-|\centerdot|$a\centerdot b$|`a\centerdot b`|
-|\cf|Not supported|Deprecated by mhchem|
-|\cfrac|$\cfrac{2}{1+\cfrac{2}{1+\cfrac{2}{1}}}$|`\cfrac{2}{1+\cfrac{2}{1+\cfrac{2}{1}}}`|
-|\check|$\check{oe}$|`\check{oe}`|
-|\ch|$\ch$||
-|\checkmark|$\checkmark$||
-|\Chi|$\Chi$||
-|\chi|$\chi$||
-|\choose|${n+1 \choose k+2}$|`{n+1 \choose k+2}`|
-|\circ|$\circ$||
-|\circeq|$\circeq$||
-|\circlearrowleft|$\circlearrowleft$||
-|\circlearrowright|$\circlearrowright$||
-|\circledast|$\circledast$||
-|\circledcirc|$\circledcirc$||
-|\circleddash|$\circleddash$||
-|\circledR|$\circledR$||
-|\circledS|$\circledS$||
-|\class|Not supported|A PR is pending.
-|\cline|Not supported|[Issue #269](https://github.com/KaTeX/KaTeX/issues/269)|
-|\clubs|$\clubs$||
-|\clubsuit|$\clubsuit$||
-|\cnums|$\cnums$||
-|\colon|$\colon$||
-|\Colonapprox|$\Colonapprox$||
-|\colonapprox|$\colonapprox$||
-|\Coloneq|$\Coloneq$||
-|\coloneq|$\coloneq$||
-|\Coloneqq|$\Coloneqq$||
-|\coloneqq|$\coloneqq$||
-|\Colonsim|$\Colonsim$||
-|\colonsim|$\colonsim$||
-|\color|$\color{#0000FF} AaBb123$|`\color{#0000FF} AaBb123`|
-|\colorbox|$\colorbox{red}{Black on red}$|`\colorbox{red}{Black on red}`|
-|\complement|$\complement$||
-|\Complex|$\Complex$||
-|\cong|$\cong$||
-|\Coppa|Not supported||
-|\coppa|Not supported||
-|\coprod|$\coprod$||
-|\copyright|$\copyright$||
-|\cos|$\cos$||
-|\cosec|$\cosec$||
-|\cosh|$\cosh$||
-|\cot|$\cot$||
-|\cotg|$\cotg$||
-|\coth|$\coth$||
-|\cr|$\begin{matrix} a & b\cr c & d \end{matrix}$|`\begin{matrix}` `a & b \cr` `c & d` `\end{matrix}`|
-|\csc|$\csc$||
-|\cssId|Not supported|A PR is pending.
-|\ctg|$\ctg$||
-|\cth|$\cth$||
-|\Cup|$\Cup$||
-|\cup|$\cup$||
-|\curlyeqprec|$\curlyeqprec$||
-|\curlyeqsucc|$\curlyeqsucc$||
-|\curlyvee|$\curlyvee$||
-|\curlywedge|$\curlywedge$||
-|\curvearrowleft|$\curvearrowleft$||
-|\curvearrowright|$\curvearrowright$||
-
-## D
-
-|Symbol/Function | Rendered | Source or Comment|
-|:---------------|:------------|:-----------------|
-|\dag|$\dag$||
-|\Dagger|$\Dagger$||
-|\dagger|$\dagger$||
-|\daleth|$\daleth$||
-|\Darr|$\Darr$||
-|\dArr|$\dArr$||
-|\darr|$\darr$||
-{darray}|$\begin{darray}{cc}a&b\\c&d\end{darray}$ | `\begin{darray}{cc}` `a & b \\` `c & d` `\end{darray}`|
-|\dashleftarrow|$\dashleftarrow$||
-|\dashrightarrow|$\dashrightarrow$||
-|\dashv|$\dashv$||
-|\dbinom|$\dbinom n k$|`\dbinom n k`|
-|\dblcolon|$\dblcolon$||
-|{dcases}|$\begin{dcases}a&\text{if }b\\c&\text{if }d\end{dcases}$|`\begin{dcases}` `a &\text{if } b \\` `c &\text{if } d` `\end{dcases}`|
-|\ddag|$\ddag$||
-|\ddagger|$\ddagger$||
-|\ddddot|Not supported||
-|\dddot|Not supported||
-|\ddot|$\ddot x$|`\ddot x`|
-|\ddots|$\ddots$||
-|\DeclareMathOperator|Not supported||
-|\def|$\def\foo{x^2} \foo + \foo$|`\def\foo{x^2} \foo + \foo`|
-|\definecolor|Not supported|[Issue #750](https://github.com/KaTeX/KaTeX/issues/750)|
-|\deg|$\deg$||
-|\degree|$\degree$||
-|\delta|$\delta$||
-|\Delta|$\Delta$||
-|\det|$\det$||
-|\Digamma|Not supported||
-|\digamma|$\digamma$||
-|\dfrac|$\dfrac{a-1}{b-1}$|`\dfrac{a-1}{b-1}`|
-|\diagdown|$\diagdown$||
-|\diagup|$\diagup$||
-|\Diamond|$\Diamond$||
-|\diamond|$\diamond$||
-|\diamonds|$\diamonds$||
-|\diamondsuit|$\diamondsuit$||
-|\dim|$\dim$||
-|\displaylines|Not supported||
-|\displaystyle|$\displaystyle\sum_0^n$|`\displaystyle\sum_0^n`|
-|\div|$\div$||
-|\divideontimes|$\divideontimes$||
-|\dot|$\dot x$|`\dot x`|
-|\Doteq|$\Doteq$||
-|\doteq|$\doteq$||
-|\doteqdot|$\doteqdot$||
-|\dotplus|$\dotplus$||
-|\dots|$x_1 + \dots + x_n$|`x_1 + \dots + x_n`|
-|\dotsb|$x_1 +\dotsb + x_n$|`x_1 +\dotsb + x_n`|
-|\dotsc|$x,\dotsc,y$|`x,\dotsc,y`|
-|\dotsi|$$\int_{A_1}\int_{A_2}\dotsi$$|`\int_{A_1}\int_{A_2}\dotsi`|
-|\dotsm|$x_1 x_2 \dotsm x_n$|`$x_1 x_2 \dotsm x_n`|
-|\dotso|$\dotso$||
-|\doublebarwedge|$\doublebarwedge$||
-|\doublecap|$\doublecap$||
-|\doublecup|$\doublecup$||
-|\Downarrow|$\Downarrow$||
-|\downarrow|$\downarrow$||
-|\downdownarrows|$\downdownarrows$||
-|\downharpoonleft|$\downharpoonleft$||
-|\downharpoonright|$\downharpoonright$||
-
-## E
-
-|Symbol/Function | Rendered | Source or Comment|
-|:---------------|:------------|:-----------------|
-|\ell|$\ell$||
-|\else|Not supported|[Issue #1003](https://github.com/KaTeX/KaTeX/issues/1003)|
-|\empty|$\empty$||
-|\emptyset|$\emptyset$||
-|\enclose|Not supported|Non standard
-|\end|$\begin{matrix} a & b\\ c & d\end{matrix}$|`\begin{matrix}` `a & b \\` `c & d` `\end{matrix}`|
-|\endgroup|${a\endgroup$|`{a\endgroup`|
-|\enspace|$a\enspace b$|`a\enspace b`|
-|\Epsilon|$\Epsilon$||
-|\epsilon|$\epsilon$||
-|\eqalign|Not supported||
-|\eqalignno|Not supported||
-|\eqcirc|$\eqcirc$||
-|\Eqcolon|$\Eqcolon$||
-|\eqcolon|$\eqcolon$||
-|{equation}|Not supported|[Issue #445](https://github.com/KaTeX/KaTeX/issues/445)|
-|{eqnarray}|Not supported||
-|\Eqqcolon|$\Eqqcolon$||
-|\eqqcolon|$\eqqcolon$||
-|\eqref|Not supported|[Issue #350](https://github.com/KaTeX/KaTeX/issues/350)|
-|\eqsim|$\eqsim$||
-|\eqslantgtr|$\eqslantgtr$||
-|\eqslantless|$\eqslantless$||
-|\equiv|$\equiv$||
-|\Eta|$\Eta$||
-|\eta|$\eta$||
-|\eth|$\eth$||
-|\euro|Not supported||
-|\exist|$\exist$||
-|\exists|$\exists$||
-|\exp|$\exp$||
-
-## F
-
-|Symbol/Function | Rendered | Source or Comment|
-|:---------------|:------------|:-----------------|
-|\fallingdotseq|$\fallingdotseq$||
-|\fbox|$\fbox{Hi there!}$|`\fbox{Hi there!}`|
-|\fcolorbox|$\fcolorbox{red}{aqua}{A}$|`\fcolorbox{red}{aqua}{A}`|
-|\fi|Not supported|[Issue #1003](https://github.com/KaTeX/KaTeX/issues/1003)|
-|\Finv|$\Finv$||
-|\flat|$\flat$||
-|\footnotesize|$\footnotesize footnotesize$|`\footnotesize footnotesize`|
-|\forall|$\forall$||
-|\frac|$\frac a b$|`\frac a b`|
-|\frak|$\frak{AaBb}$|`\frak{AaBb}`|
-|\frown|$\frown$||
-
-## G
-
-|Symbol/Function | Rendered | Source or Comment|
-|:---------------|:------------|:-----------------|
-|\Game|$\Game$||
-|\Gamma|$\Gamma$||
-|\gamma|$\gamma$||
-|{gather}|Not supported|see `{gathered}`|
-|{gathered}|$\begin{gathered}a=b\\e=b+c\end{gathered}$|`\begin{gathered}` `a=b \\ ` `e=b+c` `\end{gathered}`|
-|\gcd|$\gcd$||
-|\gdef|$\gdef\bar#1{#1^2} \bar{y} + \bar{y}$|`\gdef\bar#1{#1^2} \bar{y} + \bar{y}`|
-|\ge|$\ge$||
-|\geneuro|Not supported||
-|\geneuronarrow|Not supported||
-|\geneurowide|Not supported||
-|\genfrac|$\genfrac ( ] {2pt}{0}a{a+1}$|`\genfrac ( ] {2pt}{0}a{a+1}`|
-|\geq|$\geq$||
-|\geqq|$\geqq$||
-|\geqslant|$\geqslant$||
-|\gets|$\gets$||
-|\gg|$\gg$||
-|\ggg|$\ggg$||
-|\gggtr|$\gggtr$||
-|\gimel|$\gimel$||
-|\global|$\global\def\add#1#2{#1+#2} \add 2 3$|`\global\def\add#1#2{#1+#2} \add 2 3`|
-|\gnapprox|$\gnapprox$||
-|\gneq|$\gneq$||
-|\gneqq|$\gneqq$||
-|\gnsim|$\gnsim$||
-|\grave|$\grave{eu}$|`\grave{eu}`|
-|\gt|$a \gt b$|`a \gt b`|
-|\gtrdot|$\gtrdot$||
-|\gtrapprox|$\gtrapprox$||
-|\gtreqless|$\gtreqless$||
-|\gtreqqless|$\gtreqqless$||
-|\gtrless|$\gtrless$||
-|\gtrsim|$\gtrsim$||
-|\gvertneqq|$\gvertneqq$||
-
-## H
-
-|Symbol/Function | Rendered | Source or Comment|
-|:---------------|:------------|:-----------------|
-|\H|$\text{\H{a}}$|`\text{\H{a}}`|
-|\Harr|$\Harr$||
-|\hArr|$\hArr$||
-|\harr|$\harr$||
-|\hat|$\hat{\theta}$|`\hat{\theta}`|
-|\hbar|$\hbar$||
-|\hbox|Not supported||
-|\hdashline|$\begin{matrix}a&b\\ \hdashline c &d\end{matrix}$|`\begin{matrix}` `a & b \\` `\hdashline` `c & d` `\end{matrix}`|
-|\hearts|$\hearts$||
-|\heartsuit|$\heartsuit$||
-|\hfil|Not supported||
-|\hfill|Not supported|Issues [#164](https://github.com/KaTeX/KaTeX/issues/164) & [#269](https://github.com/KaTeX/KaTeX/issues/269)|
-|\hline|$\begin{matrix}a&b\\ \hline c &d\end{matrix}$|`\begin{matrix}` `a & b \\ \hline` `c & d` `\end{matrix}`|
-|\hom|$\hom$||
-|\hookleftarrow|$\hookleftarrow$||
-|\hookrightarrow|$\hookrightarrow$||
-|\hphantom|$a\hphantom{bc}d$|`a\hphantom{bc}d`|
-|\href|$\href{https://katex.org/}{\KaTeX}$|`\href{https://katex.org/}{\KaTeX}`|
-|\hskip|$w\hskip1em i\hskip2em d$|`w\hskip1em i\hskip2em d`|
-|\hslash|$\hslash$||
-|\hspace|$s\hspace7ex k$|`s\hspace7ex k`|
-|\huge|$\huge huge$|`\huge huge`|
-|\Huge|$\Huge Huge$|`\Huge Huge`|
-
-## I
-
-|Symbol/Function | Rendered | Source or Comment|
-|:---------------|:------------|:-----------------|
-|\i|$\text{\i}$|`\text{\i}`|
-|\idotsint|Not supported||
-|\iddots|Not supported|[Issue #1223](https://github.com/KaTeX/KaTeX/issues/1223)|
-|\if|Not supported|[Issue #1003](https://github.com/KaTeX/KaTeX/issues/1003)|
-|\iff|$A\iff B$|`A\iff B`|
-|\ifmode|Not supported|[Issue #1003](https://github.com/KaTeX/KaTeX/issues/1003)|
-|\ifx|Not supported|[Issue #1003](https://github.com/KaTeX/KaTeX/issues/1003)|
-|\iiiint|Not supported||
-|\iiint|$\iiint$||
-|\iint|$\iint$||
-|\Im|$\Im$||
-|\image|$\image$||
-|\imath|$\imath$||
-|\impliedby|$P\impliedby Q$|`P\impliedby Q`|
-|\implies|$P\implies Q$|`P\implies Q`|
-|\in|$\in$||
-|\includegraphics|Not supported|[Issue #898](https://github.com/Khan/KaTeX/issues/898)|
-|\inf|$\inf$||
-|\infin|$\infin$||
-|\infty|$\infty$||
-|\injlim|Not supported||
-|\int|$\int$||
-|\intercal|$\intercal$||
-|\intop|$\intop$||
-|\Iota|$\Iota$||
-|\iota|$\iota$||
-|\isin|$\isin$||
-|\it|${\it AaBb}$|`{\it AaBb}`|
-
-## JK
-
-|Symbol/Function | Rendered | Source or Comment|
-|:---------------|:------------|:-----------------|
-|\j|$\text{\j}$|`\text{\j}`|
-|\jmath|$\jmath$||
-|\Join|$\Join$||
-|\Kappa|$\Kappa$||
-|\kappa|$\kappa$||
-|\KaTeX|$\KaTeX$||
-|\ker|$\ker$||
-|\kern|$I\kern-2.5pt R$|`I\kern-2.5pt R`|
-|\Koppa|Not supported||
-|\koppa|Not supported||
-
-## L
-
-|Symbol/Function | Rendered | Source or Comment|
-|:---------------|:------------|:-----------------|
-|\L|Not supported||
-|\l|Not supported||
-|\Lambda|$\Lambda$||
-|\lambda|$\lambda$||
-|\label|Not supported||
-|\land|$\land$||
-|\lang|$\lang A\rangle$|`\lang A\rangle`|
-|\langle|$\langle A\rangle$|`\langle A\rangle`|
-|\Larr|$\Larr$||
-|\lArr|$\lArr$||
-|\larr|$\larr$||
-|\large|$\large large$|`\large large`|
-|\Large|$\Large Large$|`\Large Large`|
-|\LARGE|$\LARGE LARGE$|`\LARGE LARGE`|
-|\LaTeX|$\LaTeX$||
-|\lbrace|$\lbrace$||
-|\lbrack|$\lbrack$||
-|\lceil|$\lceil$||
-|\ldotp|$\ldotp$||
-|\ldots|$\ldots$||
-|\le|$\le$||
-|\leadsto|$\leadsto$||
-|\left|$\left\lbrace \dfrac ab \right.$|`\left\lbrace \dfrac ab \right.`|
-|\leftarrow|$\leftarrow$||
-|\Leftarrow|$\Leftarrow$||
-|\LeftArrow|Not supported|Non standard
-|\leftarrowtail|Not supported||
-|\leftharpoondown|$\leftharpoondown$||
-|\leftharpoonup|$\leftharpoonup$||
-|\leftleftarrows|$\leftleftarrows$||
-|\Leftrightarrow|$\Leftrightarrow$||
-|\leftrightarrow|$\leftrightarrow$||
-|\leftrightarrows|$\leftrightarrows$||
-|\leftrightharpoons|$\leftrightharpoons$||
-|\leftrightsquigarrow|$\leftrightsquigarrow$||
-|\leftroot|Not supported||
-|\leftthreetimes|$\leftthreetimes$||
-|\leq|$\leq$||
-|\leqalignno|Not supported||
-|\leqq|$\leqq$||
-|\leqslant|$\leqslant$||
-|\lessapprox|$\lessapprox$||
-|\lessdot|$\lessdot$||
-|\lesseqgtr|$\lesseqgtr$||
-|\lesseqqgtr|$\lesseqqgtr$||
-|\lessgtr|$\lessgtr$||
-|\lesssim|$\lesssim$||
-|\let|Not supported|[Issue #1413](https://github.com/KaTeX/KaTeX/issues/1413)|
-|\lfloor|$\lfloor$||
-|\lg|$\lg$||
-|\lgroup|$\lgroup$||
-|\lhd|$\lhd$||
-|\lim|$\lim$||
-|\liminf|$\liminf$||
-|\limits|$\lim\limits_x$|`\lim\limits_x`|
-|\limsup|$\limsup$||
-|\ll|$\ll$||
-|\llap|${=}\llap{/\,}$|`{=}\llap{/\,}`|
-|\llcorner|$\llcorner$||
-|\Lleftarrow|$\Lleftarrow$||
-|\lll|$\lll$||
-|\llless|$\llless$||
-|\lmoustache|$\lmoustache$||
-|\ln|$\ln$||
-|\lnapprox|$\lnapprox$||
-|\lneq|$\lneq$||
-|\lneqq|$\lneqq$||
-|\lnot|$\lnot$||
-|\lnsim|$\lnsim$||
-|\log|$\log$||
-|\Longleftarrow|$\Longleftarrow$||
-|\longleftarrow|$\longleftarrow$||
-|\Longleftrightarrow|$\Longleftrightarrow$||
-|\longleftrightarrow|$\longleftrightarrow$||
-|\longmapsto|$\longmapsto$||
-|\Longrightarrow|$\Longrightarrow$||
-|\longrightarrow|$\longrightarrow$||
-|\looparrowleft|$\looparrowleft$||
-|\looparrowright|$\looparrowright$||
-|\lor|$\lor$||
-|\lower|Not supported||
-|\lozenge|$\lozenge$||
-|\lparen|$\lparen$||
-|\Lrarr|$\Lrarr$||
-|\lrArr|$\lrArr$||
-|\lrarr|$\lrarr$||
-|\lrcorner|$\lrcorner$||
-|\lq|$\lq$||
-|\Lsh|$\Lsh$||
-|\lt|$\lt$||
-|\ltimes|$\ltimes$||
-|\lVert|$\lVert$||
-|\lvert|$\lvert$||
-|\lvertneqq|$\lvertneqq$||
-
-## M
-
-|Symbol/Function | Rendered | Source or Comment|
-|:---------------|:------------|:-----------------|
-|\maltese|$\maltese$||
-|\mapsto|$\mapsto$||
-|\mathbb|$\mathbb{AB}$|`\mathbb{AB}` KaTeX supports A-Z k|
-|\mathbf|$\mathbf{AaBb123}$|`\mathbf{AaBb123}`|
-|\mathbin|$a\mathbin{!}b$|`a\mathbin{!}b`|
-|\mathcal|$\mathcal{AaBb123}$|`\mathcal{AaBb123}`|
-|\mathchoice|$a\mathchoice{\,}{\,\,}{\,\,\,}{\,\,\,\,}b$|`a\mathchoice{\,}{\,\,}{\,\,\,}{\,\,\,\,}b`|
-|\mathclap|$\displaystyle\sum_{\mathclap{1\le i\le n}} x_{i}$|`\sum_{\mathclap{1\le i\le n}} x_{i}`|
-|\mathclose|$a + (b\mathclose\gt + c$|`a + (b\mathclose\gt + c`|
-|\mathellipsis|$\mathellipsis$||
-|\mathfrak|$\mathfrak{AaBb}$|`\mathfrak{AaBb}` KaTeX supports A-Za-z|
-|\mathinner|$ab\mathinner{\text{inside}}cd$|`ab\mathinner{\text{inside}}cd`|
-|\mathit|$\mathit{AaBb}$|`\mathit{AaBb}` KaTeX supports A-Za-z|
-|\mathllap|${=}\mathllap{/\,}$|`{=}\mathllap{/\,}`|
-|\mathnormal|$\mathnormal{AaBb}$|`\mathnormal{AaBb}` KaTeX supports A-Za-z|
-|\mathop|$\mathop{\star}_a^b$|`\mathop{\star}_a^b`|
-|\mathopen|$a + \mathopen\lt b) + c$|`a + \mathopen\lt b) + c`|
-|\mathord|$1\mathord{,}234{,}567$|`1\mathord{,}234{,}567`|
-|\mathpunct|$A\mathpunct{-}B$|`A\mathpunct{-}B`|
-|\mathrel|$a \mathrel{\#} b$|`a \mathrel{\#} b`|
-|\mathrlap|$\mathrlap{\,/}{=}$|`\mathrlap{\,/}{=}`|
-|\mathring|$\mathring{a}$|`\mathring{a}`|
-|\mathrm|$\mathrm{AaBb123}$|`\mathrm{AaBb123}`|
-|\mathscr|$\mathscr{AB}$|`\mathscr{AaBb123}` KaTeX supports A-Z|
-|\mathsf|$\mathsf{AaBb123}$|`\mathsf{AaBb123}`|
-|\mathsterling|$\mathsterling$||
-|\mathstrut|Not supported||
-|\mathtip|Not supported||
-|\mathtt|$\mathtt{AaBb123}$|`\mathtt{AaBb123}`|
-|\matrix|Not supported|See `{matrix}`|
-|{matrix}|$\begin{matrix}a&b\\c&d\end{matrix}$|`\begin{matrix}` `a & b \\` `c & d` `\end{matrix}`|
-|\max|$\max$||
-|\mbox|Not supported||
-|\measuredangle|$\measuredangle$||
-|\medspace|$a\medspace b$|`a\medspace b`|
-|\mho|$\mho$||
-|\mid|$\{x∈ℝ\mid x>0\}$|`\{x∈ℝ\mid x>0\}`|
-|\middle|$P\left(A\middle\vert B\right)$|`P\left(A\middle\vert B\right)`|
-|\min|$\min$||
-|\mit|Not supported|See `\mathit`|
-|\mkern|$a\mkern18mu b$|`a\mkern18mu b`|
-|\mmlToken|Not supported||
-|\mod|$3\equiv 5 \mod 2$|`3\equiv 5 \mod 2`|
-|\models|$\models$||
-|\moveleft|Not supported||
-|\moveright|Not supported||
-|\mp|$\mp$||
-|\mskip|$a\mskip{10mu}b$|`a\mskip{10mu}b`|
-|\mspace|Not supported||
-|\Mu|$\Mu$||
-|\mu|$\mu$||
-|\multicolumn|Not supported|[Issue #269](https://github.com/KaTeX/KaTeX/issues/269)|
-|{multiline}|Not supported||
-|\multimap|$\multimap$||
-
-## N
-
-|Symbol/Function | Rendered | Source or Comment|
-|:---------------|:------------|:-----------------|
-|\N|$\N$||
-|\nabla|$\nabla$||
-|\natnums|$\natnums$||
-|\natural|$\natural$||
-|\negmedspace|$a\negmedspace b$|`a\negmedspace b`|
-|\ncong|$\ncong$||
-|\ne|$\ne$||
-|\nearrow|$\nearrow$||
-|\neg|$\neg$||
-|\negthickspace|$a\negthickspace b$|`a\negthickspace b`|
-|\negthinspace|$a\negthinspace b$|`a\negthinspace b`|
-|\neq|$\neq$||
-|\newcommand|$\newcommand\chk{\checkmark} \chk$|`\newcommand\chk{\checkmark} \chk`|
-|\newenvironment|Not supported|[Issue #37](https://github.com/KaTeX/KaTeX/issues/37)|
-|\Newextarrow|Not supported||
-|\newline|$a\newline b$|`a\newline b`|
-|\nexists|$\nexists$||
-|\ngeq|$\ngeq$||
-|\ngeqq|$\ngeqq$||
-|\ngeqslant|$\ngeqslant$||
-|\ngtr|$\ngtr$||
-|\ni|$\ni$||
-|\nleftarrow|$\nleftarrow$||
-|\nLeftarrow|$\nLeftarrow$||
-|\nLeftrightarrow|$\nLeftrightarrow$||
-|\nleftrightarrow|$\nleftrightarrow$||
-|\nleq|$\nleq$||
-|\nleqq|$\nleqq$||
-|\nleqslant|$\nleqslant$||
-|\nless|$\nless$||
-|\nmid|$\nmid$||
-|\nobreak|||
-|\nobreakspace|$a\nobreakspace b$|`a\nobreakspace b`|
-|\nolimits|$\lim\nolimits_x$|`\lim\nolimits_x`|
-|\normalsize|$\normalsize normalsize$|`\normalsize normalsize`|
-|\not|$\not =$|`\not =`|
-|\notag|Not supported||
-|\notin|$\notin$||
-|\notni|$\notni$||
-|\nparallel|$\nparallel$||
-|\nprec|$\nprec$||
-|\npreceq|$\npreceq$||
-|\nRightarrow|$\nRightarrow$||
-|\nrightarrow|$\nrightarrow$||
-|\nshortmid|$\nshortmid$||
-|\nshortparallel|$\nshortparallel$||
-|\nsim|$\nsim$||
-|\nsubseteq|$\nsubseteq$||
-|\nsubseteqq|$\nsubseteqq$||
-|\nsucc|$\nsucc$||
-|\nsucceq|$\nsucceq$||
-|\nsupseteq|$\nsupseteq$||
-|\nsupseteqq|$\nsupseteqq$||
-|\ntriangleleft|$\ntriangleleft$||
-|\ntrianglelefteq|$\ntrianglelefteq$||
-|\ntriangleright|$\ntriangleright$||
-|\ntrianglerighteq|$\ntrianglerighteq$||
-|\Nu|$\Nu$||
-|\nu|$\nu$||
-|\nVDash|$\nVDash$||
-|\nVdash|$\nVdash$||
-|\nvDash|$\nvDash$||
-|\nvdash|$\nvdash$||
-|\nwarrow|$\nwarrow$||
-
-## O
-
-|Symbol/Function | Rendered | Source or Comment|
-|:---------------|:------------|:-----------------|
-|\O|$\text{\O}$|`\text{\O}`|
-|\o|$\text{\o}$|`\text{\o}`|
-|\odot|$\odot$||
-|\OE|$\text{\OE}$|`\text{\OE}`|
-|\oe|$\text{\oe}$|`\text{\oe}`|
-|\officialeuro|Not supported||
-|\oiiint|$\oiiint$||
-|\oiint|$\oiint$||
-|\oint|$\oint$||
-|\oldstyle|Not supported||
-|\omega|$\omega$||
-|\Omega|$\Omega$||
-|\Omicron|$\Omicron$||
-|\omicron|$\omicron$||
-|\ominus|$\ominus$||
-|\operatorname|$\operatorname{asin} x$|\operatorname{asin} x|
-|\operatorname\*|Not supported|[Issue #1242](https://github.com/KaTeX/KaTeX/issues/1242)|
-|\oplus|$\oplus$||
-|\or|Not supported||
-|\oslash|$\oslash$||
-|\otimes|$\otimes$||
-|\over|${a+1 \over b+2}+c$|`{a+1 \over b+2}+c`|
-|\overbrace|$\overbrace{x+⋯+x}^{n\text{ times}}$|`\overbrace{x+⋯+x}^{n\text{ times}}`|
-|\overbracket|Not supported||
-|\overgroup|$\overgroup{AB}$|`\overgroup{AB}`|
-|\overleftarrow|$\overleftarrow{AB}$|`\overleftarrow{AB}`|
-|\overleftharpoon|$\overleftharpoon{AB}$|`\overleftharpoon{AB}`|
-|\overleftrightarrow|$\overleftrightarrow{AB}$|`\overleftrightarrow{AB}`|
-|\overline|$\overline{\text{a long argument}}$|`\overline{\text{a long argument}}`|
-|\overlinesegment|$\overlinesegment{AB}$|`\overlinesegment{AB}`|
-|\overparen|Not supported|See `\overgroup`|
-|\Overrightarrow|$\Overrightarrow{AB}$|`\Overrightarrow{AB}`|
-|\overrightarrow|$\overrightarrow{AB}$|`\overrightarrow{AB}`|
-|\overrightharpoon|$\overrightharpoon{ac}$|`\overrightharpoon{ac}`|
-|\overset|$\overset{!}{=}$|`\overset{!}{=}`|
-|\overwithdelims|Not supported||
-|\owns|$\owns$||
-
-## P
-
-|Symbol/Function | Rendered | Source or Comment|
-|:---------------|:------------|:-----------------|
-|\P|$\text{\P}$|`\text{\P}`|
-|\pagecolor|Not supported|[Deprecated](https://en.wikipedia.org/wiki/Help:Displaying_a_formula#Deprecated_syntax)|
-|\parallel|$\parallel$||
-|\part|Not supported|[Deprecated](https://en.wikipedia.org/wiki/Help:Displaying_a_formula#Deprecated_syntax)|
-|\partial|$\partial$||
-|\perp|$\perp$||
-|\phantom|$\Gamma^{\phantom{i}j}_{i\phantom{j}k}$|`\Gamma^{\phantom{i}j}_{i\phantom{j}k}`|
-|\phase|Not supported||
-|\Phi|$\Phi$||
-|\phi|$\phi$||
-|\Pi|$\Pi$||
-|\pi|$\pi$||
-|{picture}|Not supported||
-|\pitchfork|$\pitchfork$||
-|\plusmn|$\plusmn$||
-|\pm|$\pm$||
-|\pmatrix|Not supported|See `{pmatrix}`|
-|{pmatrix}|$\begin{pmatrix}a&b\\c&d\end{pmatrix}$|`\begin{pmatrix}` `a & b \\` `c & d` `\end{pmatrix}`
-|\pmb|$\pmb{\mu}$|`\pmb{\mu}`|
-|\pmod|$x\pmod a$|`x\pmod a`|
-|\pod|$x \pod a$|`x \pod a`|
-|\pounds|$\pounds$||
-|\Pr|$\Pr$||
-|\prec|$\prec$||
-|\precapprox|$\precapprox$||
-|\preccurlyeq|$\preccurlyeq$||
-|\preceq|$\preceq$||
-|\precnapprox|$\precnapprox$||
-|\precneqq|$\precneqq$||
-|\precnsim|$\precnsim$||
-|\precsim|$\precsim$||
-|\prime|$\prime$||
-|\prod|$\prod$||
-|\projlim|Not supported||
-|\propto|$\propto$||
-|\providecommand|$\providecommand\greet{\text{Hello}} \greet$|`\providecommand\greet{\text{Hello}} \greet`|
-|\psi|$\psi$||
-|\Psi|$\Psi$||
-|\pu |${123~\mathchoice{\textstyle\frac{\mathrm{kJ}}{\mathrm{mol}}}{\frac{\mathrm{kJ}}{\mathrm{mol}}}{\frac{\mathrm{kJ}}{\mathrm{mol}}}{\frac{\mathrm{kJ}}{\mathrm{mol}}}}$|`\pu{123 kJ//mol}` Requires an [extension](https://github.com/KaTeX/KaTeX/tree/master/contrib/mhchem/)|
-
-## QR
-
-|Symbol/Function | Rendered | Source or Comment|
-|:---------------|:------------|:-----------------|
-|\Q|Not supported|See `\Bbb{Q}`|
-|\qquad|$a\qquad\qquad{b}$|`a\qquad\qquad{b}`|
-|\quad|$a\quad\quad{b}$|`a\quad\quad{b}`|
-|\R|$\R$||
-|\r|$\text{\r{a}}$|`\text{\r{a}}`|
-|\raise|Not supported|see `\raisebox`|
-|\raisebox|$h\raisebox{2pt}{ighe}r$|`h\raisebox{2pt}{ighe}r`|
-|\rang|$\langle A\rang$|`\langle A\rang`|
-|\rangle|$\langle A\rangle$|`\langle A\rangle`|
-|\Rarr|$\Rarr$||
-|\rArr|$\rArr$||
-|\rarr|$\rarr$||
-|\rbrace|$\rbrace$||
-|\rbrack|$\rbrack$||
-|\rceil|$\rceil$||
-|\Re|$\Re$||
-|\real|$\real$||
-|\Reals|$\Reals$||
-|\reals|$\reals$||
-|\ref|Not supported|[Issue #350](https://github.com/KaTeX/KaTeX/issues/350)|
-|\relax|||
-|\renewcommand|$\def\hail{Hi!}\renewcommand\hail{\text{Ahoy!}} \hail$|`\def\hail{Hi!}` `\renewcommand\hail{\text{Ahoy!}}` `\hail`|
-|\renewenvironment|Not supported||
-|\require|Not supported||
-|\restriction|$\restriction$||
-|\rfloor|$\rfloor$||
-|\rgroup|$\rgroup$||
-|\rhd|$\rhd$||
-|\Rho|$\Rho$||
-|\rho|$\rho$||
-|\right|$\left.\dfrac a b\right)$|`\left.\dfrac a b\right)`|
-|\Rightarrow|$\Rightarrow$||
-|\rightarrow|$\rightarrow$||
-|\rightarrowtail|$\rightarrowtail$||
-|\rightharpoondown|$\rightharpoondown$||
-|\rightharpoonup|$\rightharpoonup$||
-|\rightleftarrows|$\rightleftarrows$||
-|\rightleftharpoons|$\rightleftharpoons$||
-|\rightrightarrows|$\rightrightarrows$||
-|\rightsquigarrow|$\rightsquigarrow$||
-|\rightthreetimes|$\rightthreetimes$||
-|\risingdotseq|$\risingdotseq$||
-|\rlap|$\rlap{\,/}{=}$|`\rlap{\,/}{=}`|
-|\rm|$\rm AaBb12$|`\rm AaBb12`|
-|\rmoustache|$\rmoustache$||
-|\root|Not supported||
-|\rotatebox|Not supported|[Issue #681](https://github.com/KaTeX/KaTeX/issues/681)|
-|\rparen|$\rparen$||
-|\rq|$\rq$||
-|\Rrightarrow|$\Rrightarrow$||
-|\Rsh|$\Rsh$||
-|\rtimes|$\rtimes$||
-|\Rule|Not supported|see `\rule`
-|\rule|$x\rule[6pt]{2ex}{1ex}x$|`x\rule[6pt]{2ex}{1ex}x`|
-|\rVert|$\rVert$||
-|\rvert|$\rvert$||
-
-## S
-
-|Symbol/Function | Rendered | Source or Comment|
-|:---------------|:------------|:-----------------|
-|\S|$\text{\S}$|`\text{\S}`|
-|\Sampi|Not supported||
-|\sampi|Not supported||
-|\scalebox|Not supported||
-|\scr|Not supported|See `\mathscr`|
-|\scriptscriptstyle|$\scriptscriptstyle \frac cd$|`\scriptscriptstyle \frac cd`|
-|\scriptsize|$\scriptsize scriptsize$|`\scriptsize scriptsize`|
-|\scriptstyle|$\frac ab + {\scriptstyle \frac cd}$|`\frac ab + {\scriptstyle \frac cd}`|
-|\sdot|$\sdot$||
-|\searrow|$\searrow$||
-|\sec|$\sec$||
-|\sect|$\text{\sect}$|`\text{\sect}`|
-|\setlength|Not supported|[Issue #687](https://github.com/KaTeX/KaTeX/issues/687)|
-|\setminus|$\setminus$||
-|\sf|$\sf AaBb123$|`\sf AaBb123`|
-|\sharp|$\sharp$||
-|\shortmid|$\shortmid$||
-|\shortparallel|$\shortparallel$||
-|\shoveleft|Not supported||
-|\shoveright|Not supported||
-|\sideset|Not supported||
-|\Sigma|$\Sigma$||
-|\sigma|$\sigma$||
-|\sim|$\sim$||
-|\simeq|$\simeq$||
-|\sin|$\sin$||
-|\sinh|$\sinh$||
-|\sixptsize|$\sixptsize sixptsize$|`\sixptsize sixptsize`|
-|\sh|$\sh$||
-|\skew|Not supported||
-|\skip|Not supported||
-|\small|$\small small$|`\small small`|
-|\smallfrown|$\smallfrown$||
-|\smallint|$\smallint$||
-|{smallmatrix}|Not supported||
-|\smallsetminus|$\smallsetminus$||
-|\smallsmile|$\smallsmile$||
-|\smash|$\left(x^{\smash{2}}\right)$|`\left(x^{\smash{2}}\right)`|
-|\smile|$\smile$||
-|\smiley|Not supported||
-|\sout|$\sout{abc}$|`\sout{abc}`|
-|\Space|Not supported|see `\space`
-|\space|$a\space{b}$|`a\space{b}`|
-|\spades|$\spades$||
-|\spadesuit|$\spadesuit$||
-|\sphericalangle|$\sphericalangle$||
-|{split}|Not supported|[Issue #1345](https://github.com/KaTeX/KaTeX/issues/1345)|
-|\sqcap|$\sqcap$||
-|\sqcup|$\sqcup$||
-|\square|$\square$||
-|\sqrt|$\sqrt[3]{x}$|`\sqrt[3]{x}`|
-|\sqsubset|$\sqsubset$||
-|\sqsubseteq|$\sqsubseteq$||
-|\sqsupset|$\sqsupset$||
-|\sqsupseteq|$\sqsupseteq$||
-|\ss|$\text{\ss}$|`\text{\ss}`|
-|\stackrel|$\stackrel{!}{=}$|`\stackrel{!}{=}`|
-|\star|$\star$||
-|\Stigma|Not supported||
-|\stigma|Not supported||
-|\strut|Not supported||
-|\style|Not supported|Non standard|
-|\sub|$\sub$||
-|{subarray}|Not supported||
-|\sube|$\sube$||
-|\Subset|$\Subset$||
-|\subset|$\subset$||
-|\subseteq|$\subseteq$||
-|\subseteqq|$\subseteqq$||
-|\subsetneq|$\subsetneq$||
-|\subsetneqq|$\subsetneqq$||
-|\substack|Not supported||
-|\succ|$\succ$||
-|\succapprox|$\succapprox$||
-|\succcurlyeq|$\succcurlyeq$||
-|\succeq|$\succeq$||
-|\succnapprox|$\succnapprox$||
-|\succneqq|$\succneqq$||
-|\succnsim|$\succnsim$||
-|\succsim|$\succsim$||
-|\sum|$\sum$||
-|\sup|$\sup$||
-|\supe|$\supe$||
-|\Supset|$\Supset$||
-|\supset|$\supset$||
-|\supseteq|$\supseteq$||
-|\supseteqq|$\supseteqq$||
-|\supsetneq|$\supsetneq$||
-|\supsetneqq|$\supsetneqq$||
-|\surd|$\surd$||
-|\swarrow|$\swarrow$||
-
-## T
-
-|Symbol/Function | Rendered | Source or Comment|
-|:---------------|:------------|:-----------------|
-|\tag|$$\tag{3.1c} a^2+b^2=c^2$$|`\tag{3.1c} a^2+b^2=c^2`|
-|\tag*|$$\tag*{3.1c} a^2+b^2=c^2$$|`\tag*{3.1c} a^2+b^2=c^2`|
-|\tan|$\tan$||
-|\tanh|$\tanh$||
-|\Tau|$\Tau$||
-|\tau|$\tau$||
-|\tbinom|$\tbinom n k$|`\tbinom n k`|
-|\TeX|$\TeX$||
-|\text|$\text{ yes }\&\text{ no }$|`\text{ yes }\&\text{ no }`|
-|\textasciitilde|$\text{\textasciitilde}$|`\text{\textasciitilde}`|
-|\textasciicircum|$\text{\textasciicircum}$|`\text{\textasciicircum}`|
-|\textbackslash|$\text{\textbackslash}$|`\text{\textbackslash}`|
-|\textbar|$\text{\textbar}$|`\text{\textbar}`|
-|\textbardbl|$\text{\textbardbl}$|`\text{\textbardbl}`|
-|\textbf|$\textbf{AaBb123}$|`\textbf{AaBb123}`|
-|\textbraceleft|$\text{\textbraceleft}$|`\text{\textbraceleft}`|
-|\textbraceright|$\text{\textbraceright}$|`\text{\textbraceright}`|
-|\textcircled|$\text{\textcircled a}$|`\text{\textcircled a}`|
-|\textcolor|$\textcolor{blue}{F=ma}$|`\textcolor{blue}{F=ma}`|
-|\textdagger|$\text{\textdagger}$|`\text{\textdagger}`|
-|\textdaggerdbl|$\text{\textdaggerdbl}$|`\text{\textdaggerdbl}`|
-|\textdegree|$\text{\textdegree}$|`\text{\textdegree}`|
-|\textdollar|$\text{\textdollar}$|`\text{\textdollar}`|
-|\textellipsis|$\text{\textellipsis}$|`\text{\textellipsis}`|
-|\textemdash|$\text{\textemdash}$|`\text{\textemdash}`|
-|\textendash|$\text{\textendash}$|`\text{\textendash}`|
-|\textgreater|$\text{\textgreater}$|`\text{\textgreater}`|
-|\textit|$\textit{AaBb}$|`\textit{AaBb}`|
-|\textless|$\text{\textless}$|`\text{\textless}`|
-|\textnormal|$\textnormal{AB}$|`\textnormal{AB}`|
-|\textquotedblleft|$\text{\textquotedblleft}$|`\text{\textquotedblleft}`|
-|\textquotedblright|$\text{\textquotedblright}$|`\text{\textquotedblright}`|
-|\textquoteleft|$\text{\textquoteleft}$|`\text{\textquoteleft}`|
-|\textquoteright|$\text{\textquoteright}$|`\text{\textquoteright}`|
-|\textregistered|$\text{\textregistered}$|`\text{\textregistered}`|
-|\textrm|$\textrm{AaBb123}$|`\textrm{AaBb123}`|
-|\textsc|Not supported|[Issue #471](https://github.com/KaTeX/KaTeX/issues/471)|
-|\textsf|$\textsf{AaBb123}$|`\textsf{AaBb123}`|
-|\textsterling|$\text{\textsterling}$|`\text{\textsterling}`|
-|\textstyle|$\textstyle\sum_0^n$|`\textstyle\sum_0^n`|
-|\texttip|Not supported||
-|\texttt|$\texttt{AaBb123}$|`\texttt{AaBb123}`|
-|\textunderscore|$\text{\textunderscore}$|`\text{\textunderscore}`|
-|\textvisiblespace|Not supported||
-|\tfrac|$\tfrac ab$|`\tfrac ab`|
-|\tg|$\tg$||
-|\th|$\th$||
-|\therefore|$\therefore$||
-|\Theta|$\Theta$||
-|\theta|$\theta$||
-|\thetasym|$\thetasym$||
-|\thickapprox|$\thickapprox$||
-|\thicksim|$\thicksim$||
-|\thickspace|$a\thickspace b$|`a\thickspace b`|
-|\thinspace|$a\thinspace b$|`a\thinspace b`|
-|\tilde|$\tilde M$|`\tilde M`|
-|\times|$\times$||
-|\Tiny|Not supported|see `\tiny`|
-|\tiny|$\tiny tiny$|`\tiny tiny`|
-|\to|$\to$||
-|\toggle|Not supported||
-|\top|$\top$||
-|\triangle|$\triangle$||
-|\triangledown|$\triangledown$||
-|\triangleleft|$\triangleleft$||
-|\trianglelefteq|$\trianglelefteq$||
-|\triangleq|$\triangleq$||
-|\triangleright|$\triangleright$||
-|\trianglerighteq|$\trianglerighteq$||
-|\tt|${\tt AaBb123}$|`{\tt AaBb123}`|
-|\twoheadleftarrow|$\twoheadleftarrow$||
-|\twoheadrightarrow|$\twoheadrightarrow$||
-
-## U
-
-|Symbol/Function | Rendered | Source or Comment|
-|:---------------|:------------|:-----------------|
-|\u|$\text{\u{a}}$|`\text{\u{a}}`|
-|\Uarr|$\Uarr$||
-|\uArr|$\uArr$||
-|\uarr|$\uarr$||
-|\ulcorner|$\ulcorner$||
-|\underbrace|$\underbrace{x+⋯+x}_{n\text{ times}}$|`\underbrace{x+⋯+x}_{n\text{ times}}`|
-|\underbracket|Not supported||
-|\undergroup|$\undergroup{AB}$|`\undergroup{AB}`|
-|\underleftarrow|$\underleftarrow{AB}$|`\underleftarrow{AB}`|
-|\underleftrightarrow|$\underleftrightarrow{AB}$|`\underleftrightarrow{AB}`|
-|\underrightarrow|$\underrightarrow{AB}$|`\underrightarrow{AB}`|
-|\underline|$\underline{\text{a long argument}}$|`\underline{\text{a long argument}}`|
-|\underlinesegment|$\underlinesegment{AB}$|`\underlinesegment{AB}`|
-|\underparen|Not supported|See `\undergroup`|
-|\underrightarrow|$\underrightarrow{AB}$|`\underrightarrow{AB}`|
-|\underset|$\underset{!}{=}$|`\underset{!}{=}`|
-|\unicode|Not supported||
-|\unlhd|$\unlhd$||
-|\unrhd|$\unrhd$||
-|\Uparrow|$\Uparrow$||
-|\uparrow|$\uparrow$||
-|\Updownarrow|$\Updownarrow$||
-|\updownarrow|$\updownarrow$||
-|\upharpoonleft|$\upharpoonleft$||
-|\upharpoonright|$\upharpoonright$||
-|\uplus|$\uplus$||
-|\uproot|Not supported||
-|\Upsilon|$\Upsilon$||
-|\upsilon|$\upsilon$||
-|\upuparrows|$\upuparrows$||
-|\urcorner|$\urcorner$||
-|\url|$\footnotesize\url{https://katex.org/}$|`\url{https://katex.org/}`|
-|\utilde|$\utilde{AB}$|`\utilde{AB}`|
-
-## V
-
-|Symbol/Function | Rendered | Source or Comment|
-|:---------------|:------------|:-----------------|
-|\v|$\text{\v{a}}$|`\text{\v{a}}`|
-|\varcoppa|Not supported||
-|\varDelta|$\varDelta$||
-|\varepsilon|$\varepsilon$||
-|\varGamma|$\varGamma$||
-|\varinjlim|Not supported||
-|\varkappa|$\varkappa$||
-|\varLambda|$\varLambda$||
-|\varliminf|Not supported||
-|\varlimsup|Not supported||
-|\varnothing|$\varnothing$||
-|\varOmega|$\varOmega$||
-|\varPhi|$\varPhi$||
-|\varphi|$\varphi$||
-|\varPi|$\varPi$||
-|\varpi|$\varpi$||
-|\varprojlim|Not supported||
-|\varpropto|$\varpropto$||
-|\varPsi|$\varPsi$||
-|\varPsi|$\varPsi$||
-|\varrho|$\varrho$||
-|\varSigma|$\varSigma$||
-|\varsigma|$\varsigma$||
-|\varstigma|Not supported||
-|\varsubsetneq|$\varsubsetneq$||
-|\varsubsetneqq|$\varsubsetneqq$||
-|\varsupsetneq|$\varsupsetneq$||
-|\varsupsetneqq|$\varsupsetneqq$||
-|\varTheta|$\varTheta$||
-|\vartheta|$\vartheta$||
-|\vartriangle|$\vartriangle$||
-|\vartriangleleft|$\vartriangleleft$||
-|\vartriangleright|$\vartriangleright$||
-|\varUpsilon|$\varUpsilon$||
-|\varXi|$\varXi$||
-|\vcentcolon|$\vcentcolon$||
-|\vcenter|Not supported||
-|\Vdash|$\Vdash$||
-|\vDash|$\vDash$||
-|\vdash|$\vdash$||
-|\vdots|$\vdots$||
-|\vec|$\vec{F}$|`\vec{F}`|
-|\vee|$\vee$||
-|\veebar|$\veebar$||
-|\verb|$\verb!\frac a b!$|`\verb!\frac a b!`|
-|\Vert|$\Vert$||
-|\vert|$\vert$||
-|\vfil|Not supported||
-|\vfill|Not supported||
-|\vline|Not supported|[Issue #269](https://github.com/KaTeX/KaTeX/issues/269)|
-|{Vmatrix}|$\begin{Vmatrix}a&b\\c&d\end{Vmatrix}$|`\begin{Vmatrix}` `a & b \\` `c & d` `\end{Vmatrix}`|
-|{vmatrix}|$\begin{vmatrix}a&b\\c&d\end{vmatrix}$|`\begin{vmatrix}` `a & b \\` `c & d` `\end{vmatrix}`|
-|\vphantom|$\overline{\vphantom{M}a}$|`\overline{\vphantom{M}a}`|
-|\Vvdash|$\Vvdash$||
-
-## W
-
-|Symbol/Function | Rendered | Source or Comment|
-|:---------------|:------------|:-----------------|
-|\wedge|$\wedge$||
-|\weierp|$\weierp$||
-|\widecheck|$\widecheck{AB}$|`\widecheck{AB}`|
-|\widehat|$\widehat{AB}$|`\widehat{AB}`|
-|\wideparen|Not supported|[Issue #560](https://github.com/KaTeX/KaTeX/issues/560)|
-|\widetilde|$\widetilde{AB}$|`\widetilde{AB}`|
-|\wp|$\wp$||
-|\wr|$\wr$||
-
-## X
-
-|Symbol/Function | Rendered | Source or Comment|
-|:---------------|:------------|:-----------------|
-|\xcancel|$\xcancel{ABC}$|`\xcancel{ABC}`|
-|\Xi|$\Xi$||
-|\xi|$\xi$||
-|\xhookleftarrow|$\xhookleftarrow{abc}$|`\xhookleftarrow{abc}`|
-|\xhookrightarrow|$\xhookrightarrow{abc}$|`\xhookrightarrow{abc}`|
-|\xLeftarrow|$\xLeftarrow{abc}$|`\xLeftarrow{abc}`|
-|\xleftarrow|$\xleftarrow{abc}$|`\xleftarrow{abc}`|
-|\xleftharpoondown|$\xleftharpoondown{abc}$|`\xleftharpoondown{abc}`|
-|\xleftharpoonup|$\xleftharpoonup{abc}$|`\xleftharpoonup{abc}`|
-|\xLeftrightarrow|$\xLeftrightarrow{abc}$|`\xLeftrightarrow{abc}`|
-|\xleftrightarrow|$\xleftrightarrow{abc}$|`\xleftrightarrow{abc}`|
-|\xleftrightharpoons|$\xleftrightharpoons{abc}$|`\xleftrightharpoons{abc}`|
-|\xlongequal|$\xlongequal{abc}$|`\xlongequal{abc}`|
-|\xmapsto|$\xmapsto{abc}$|`\xmapsto{abc}`|
-|\xRightarrow|$\xRightarrow{abc}$|`\xRightarrow{abc}`|
-|\xrightarrow|$\xrightarrow{abc}$|`\xrightarrow{abc}`|
-|\xrightharpoondown|$\xrightharpoondown{abc}$|`\xrightharpoondown{abc}`|
-|\xrightharpoonup|$\xrightharpoonup{abc}$|`\xrightharpoonup{abc}`|
-|\xrightleftharpoons|$\xrightleftharpoons{abc}$|`\xrightleftharpoons{abc}`|
-|\xtofrom|$\xtofrom{abc}$|`\xtofrom{abc}`|
-|\xtwoheadleftarrow|$\xtwoheadleftarrow{abc}$|`\xtwoheadleftarrow{abc}`|
-|\xtwoheadrightarrow|$\xtwoheadrightarrow{abc}$|`\xtwoheadrightarrow{abc}`|
-
-## YZ
-
-|Symbol/Function | Rendered | Source or Comment|
-|:---------------|:------------|:-----------------|
-|\yen|$\yen$||
-|\Z|$\Z$||
-|\Zeta|$\Zeta$||
-|\zeta|$\zeta$||
diff --git a/website/versioned_docs/version-0.10.1/supported.md b/website/versioned_docs/version-0.10.1/supported.md
deleted file mode 100644
index 15b61bce..00000000
--- a/website/versioned_docs/version-0.10.1/supported.md
+++ /dev/null
@@ -1,640 +0,0 @@
----
-id: version-0.10.1-supported
-title: Supported Functions
-original_id: supported
----
-This is a list of TeX functions supported by KaTeX. It is sorted into logical groups.
-
-There is a similar [Support Table](support_table.md), sorted alphabetically, that lists both supported and un-supported functions.
-
-
-
-
-
-
-|||||
-|:---------------------|:---------------------|:---------------------|:--------
-|$\begin{matrix} a & b \\ c & d \end{matrix}$ | `\begin{matrix}` `a & b \\` `c & d` `\end{matrix}` |$\begin{array}{cc}a & b\\c & d\end{array}$ | `\begin{array}{cc}` `a & b \\` `c & d` `\end{array}`
-|$\begin{pmatrix} a & b \\ c & d \end{pmatrix}$ |`\begin{pmatrix}` `a & b \\` `c & d` `\end{pmatrix}` |$\begin{bmatrix} a & b \\ c & d \end{bmatrix}$ | `\begin{bmatrix}` `a & b \\` `c & d` `\end{bmatrix}`
-|$\begin{vmatrix} a & b \\ c & d \end{vmatrix}$ |`\begin{vmatrix}` `a & b \\` `c & d` `\end{vmatrix}` |$\begin{Vmatrix} a & b \\ c & d \end{Vmatrix}$ |`\begin{Vmatrix}` `a & b \\` `c & d` `\end{Vmatrix}`
-|$\begin{Bmatrix} a & b \\ c & d \end{Bmatrix}$ |`\begin{Bmatrix}` `a & b \\` `c & d` `\end{Bmatrix}`|$\def\arraystretch{1.5}\begin{array}{c:c:c} a & b & c \\ \hline d & e & f \\ \hdashline g & h & i \end{array}$|`\def\arraystretch{1.5}` `\begin{array}{c:c:c}` `a & b & c \\ \hline` `d & e & f \\` `\hdashline` `g & h & i` `\end{array}`
-|$\begin{aligned} a&=b+c \\ d+e&=f \end{aligned}$ |`\begin{aligned}` `a&=b+c \\` `d+e&=f` `\end{aligned}`|$\begin{alignedat}{2}10&x+&3&y=2\\3&x+&13&y=4\end{alignedat}$ |`\begin{alignedat}{2}` `10&x+ &3&y = 2 \\` ` 3&x+&13&y = 4` `\end{alignedat}`
-|$\begin{gathered} a=b \\ e=b+c \end{gathered}$ |`\begin{gathered}` `a=b \\ ` `e=b+c` `\end{gathered}`|$x = \begin{cases} a &\text{if } b \\ c &\text{if } d \end{cases}$ |`x = \begin{cases}` `a &\text{if } b \\` `c &\text{if } d` `\end{cases}`
-
-
-
-KaTeX also supports `darray` and `dcases`.
-
-Acceptable line separators include: `\\`, `\cr`, `\\[distance]`, and `\cr[distance]`. *Distance* can be written with any of the [KaTeX units](#units).
-
-The `{array}` environment supports `|` and `:` vertical separators.
-
-The `{array}` environment does not yet support `\cline` or `\multicolumn`.
-
-
-
-**Unicode**
-
-The letters listed above will render in any KaTeX rendering mode.
-
-If the KaTeX rendering mode is set to `strict: false` or `strict:"warn"` (default), then KaTeX will accept all Unicode letters. The letters not listed above will be rendered from system fonts, not KaTeX-supplied fonts, so their typography may clash. They may also cause small vertical alignment issues. KaTeX has detailed metrics for glyphs in Latin, Greek, and Cyrillic, but other glyphs are treated as if they are each as tall as the letter M.
-
-For Persian composite characters, a user-supplied [plug-in](https://github.com/HosseinAgha/persian-katex-plugin) is under development.
-
-## Layout
-
-### Annotation
-
-|||
-|:------------------------------|:-----
-|$\cancel{5}$ `\cancel{5}`|$\overbrace{a+b+c}^{\text{note}}$ `\overbrace{a+b+c}^{\text{note}}`
-|$\bcancel{5}$ `\bcancel{5}` |$\underbrace{a+b+c}_{\text{note}}$ `\underbrace{a+b+c}_{\text{note}}`
-|$\xcancel{ABC}$ `\xcancel{ABC}`|$\not =$ `\not =`
-|$\sout{abc}$ `\sout{abc}`|$\boxed{\pi=\frac c d}$ `\boxed{\pi=\frac c d}`
-
-`\tag{hi} x+y^{2x}`
-$$\tag{hi} x+y^{2x}$$
-
-`\tag*{hi} x+y^{2x}`
-$$\tag*{hi} x+y^{2x}$$
-
-### Line Breaks
-
-KaTeX 0.10.0+ will insert automatic line breaks in inline math after relations or binary operators such as “=” or “+”. These can be suppressed by `\nobreak` or by placing math inside a pair of braces, as in `{F=ma}`. `\allowbreak` will allow automatic line breaks at locations other than relations or operators.
-
-Hard line breaks are `\\` and `\newline`.
-
-In display math, KaTeX does not insert automatic line breaks. It ignores display math hard line breaks when rendering option `strict: true`.
-
-### Vertical Layout
-
-||||
-|:--------------|:----------------------------------------|:-----
-|$x_n$ `x_n` |$\stackrel{!}{=}$ `\stackrel{!}{=}` |$a \atop b$ `a \atop b`
-|$e^x$ `e^x` |$\overset{!}{=}$ `\overset{!}{=}` |$a\raisebox{0.25em}{b}c$ `a\raisebox{0.25em}{b}c`
-|$_u^o $ `_u^o `|$\underset{!}{=}$ `\underset{!}{=}`
-
-The second argument of `\raisebox` can contain math if it is nested within `$…$` delimiters, as in `\raisebox{0.25em}{$\frac a b$}`
-
-### Overlap and Spacing
-
-|||
-|:-------|:-------|
-|${=}\mathllap{/\,}$ `{=}\mathllap{/\,}` | $\left(x^{\smash{2}}\right)$ `\left(x^{\smash{2}}\right)`
-|$\mathrlap{\,/}{=}$ `\mathrlap{\,/}{=}` | $\sqrt{\smash[b]{y}}$ `\sqrt{\smash[b]{y}} `
-
-$\displaystyle\sum_{\mathclap{1\le i\le j\le n}} x_{ij}$ `\sum_{\mathclap{1\le i\le j\le n}} x_{ij}`
-
-KaTeX also supports `\llap`, `\rlap`, and `\clap`, but they will take only text, not math, as arguments.
-
-
-
-
-**Spacing**
-
-| Function | Produces | Function | Produces|
-|:----------------|:-------------------|:---------------------|:--------------------------------------|
-| `\,` | ³∕₁₈ em space | `\kern{distance}` | space, width = *distance*
-| `\thinspace` | ³∕₁₈ em space | `\mkern{distance}` | space, width = *distance*
-| `\>` | ⁴∕₁₈ em space | `\mskip{distance}` | space, width = *distance*
-| `\:` | ⁴∕₁₈ em space | `\hskip{distance}` | space, width = *distance*
-| `\medspace` | ⁴∕₁₈ em space | `\hspace{distance}` | space, width = *distance*
-| `\;` | ⁵∕₁₈ em space | `\hspace*{distance}` | space, width = *distance*
-| `\thickspace` | ⁵∕₁₈ em space | `\phantom{content}` | space the width and height of content
-| `\enspace` | ½ em space | `\hphantom{content}` | space the width of content
-| `\quad` | 1 em space | `\vphantom{content}` | a strut the height of content
-| `\qquad` | 2 em space | `\!` | – ³∕₁₈ em space
-| `~` | non-breaking space | `\negthinspace` | – ³∕₁₈ em space
-| `\` | space | `\negmedspace` | – ⁴∕₁₈ em space
-| `\nobreakspace` | non-breaking space | `\negthickspace` | – ⁵∕₁₈ em space
-| `\space` | space |
-
-
-
-**Notes:**
-
-`distance` will accept any of the [KaTeX units](#units).
-
-`\kern`, `\mkern`, `\mskip`, and `\hspace` accept unbraced distances, as in: `\kern1em`.
-
-`\mkern` and `\mskip` will not work in text mode and both will write a console warning for any unit except `mu`.
-
-
-
-| KaTeX Unit | Value | KaTeX Unit | Value |
-|:---|:---------------------|:---|:----------------|
-| em | CSS em | bp | 1/72 inch × F × G|
-| ex | CSS ex | pc | 12 KaTeX pt|
-| mu | 1/18 CSS em | dd | 1238/1157 KaTeX pt |
-| pt | 1/72.27 inch × F × G | cc | 14856/1157 KaTeX pt |
-| mm | 1 mm × F × G | nd | 685/642 KaTeX pt |
-| cm | 1 cm × F × G | nc | 1370/107 KaTeX pt|
-| in | 1 inch × F × G | sp | 1/65536 KaTeX pt |
-
-
-
-where:
-
-
-
-F = (font size of surrounding HTML text)/(10 pt)
-
-G = 1.21 by default, because KaTeX font-size is normally 1.21 × the surrounding font size. This value [can be overridden](font.md#font-size-and-lengths) by the CSS of an HTML page.
-
-
-
-The effect of style and size:
-
-
-
-| Unit | textstyle | scriptscript | huge |
-|:------:|:-----------------:|:------------:|:------:|
-|em or ex|$\rule{1em}{1em}$ |$\scriptscriptstyle\rule{1em}{1em}$ |$\huge\rule{1em}{1em}$
-| mu |$\rule{18mu}{18mu}$|$\scriptscriptstyle\rule{18mu}{18mu}$|$\huge\rule{18mu}{18mu}$
-| others |$\rule{10pt}{10pt}$|$\scriptscriptstyle\rule{10pt}{10pt}$|$\huge\rule{10pt}{10pt}$
-
-
diff --git a/website/versioned_docs/version-0.10.2/autorender.md b/website/versioned_docs/version-0.10.2/autorender.md
deleted file mode 100644
index 11377970..00000000
--- a/website/versioned_docs/version-0.10.2/autorender.md
+++ /dev/null
@@ -1,110 +0,0 @@
----
-id: version-0.10.2-autorender
-title: Auto-render Extension
-original_id: autorender
----
-This is an extension to automatically render all of the math inside of text. It
-searches all of the text nodes within a given element for the given delimiters,
-ignoring certain tags like `
`, and renders the math in place.
-
-## Usage
-This extension isn't part of KaTeX proper, so the script needs to be included
-(via a `
-
-```
-
-> Above, the [`defer` attribute](https://developer.mozilla.org/en/HTML/Element/script#Attributes)
-indicates that the script doesn't need to execute until the page has loaded,
-speeding up page rendering; and the `onload` attribute calls
-`renderMathInElement` once the auto-render script loads.
-
-Alternatively, you can call the `renderMathInElement` when (or after) the
-[`DOMContentLoaded` event](https://developer.mozilla.org/ko/docs/Web/Reference/Events/DOMContentLoaded)
-fires on the document or in another deferred script.
-This approach is useful for specifying or computing options, or if you don't
-want to use a `defer` or `onload` attribute.
-For example:
-
-```html
-
-
-
-
-```
-
-ECMAScript module is also available:
-```html
-
-
-
-> You can use [`nomodule` attribute](https://developer.mozilla.org/en/HTML/Element/script#Attributes)
-to provide a fallback for older browsers that do not support ES modules. -->
-
-## API
-This extension exposes a single function, `window.renderMathInElement`, with
-the following API:
-
-```js
-function renderMathInElement(elem, options)
-```
-
-`elem` is an HTML DOM element. The function will recursively search for text
-nodes inside this element and render the math in them.
-
-`options` is an optional object argument that can have the same keys as [the
-object passed to `katex.render`](https://github.com/KaTeX/KaTeX/#rendering-options),
-in addition to several auto-render-specific keys:
-
-- `delimiters`: This is a list of delimiters to look for math. Each delimiter
- has three properties:
-
- - `left`: A string which starts the math expression (i.e. the left delimiter).
- - `right`: A string which ends the math expression (i.e. the right delimiter).
- - `display`: A boolean of whether the math in the expression should be
- rendered in display mode or not.
-
- The default value is:
-
- ```js
- [
- {left: "$$", right: "$$", display: true},
- {left: "\\(", right: "\\)", display: false},
- {left: "\\[", right: "\\]", display: true}
- ]
- ```
-
-- `ignoredTags`: This is a list of DOM node types to ignore when recursing
- through. The default value is
- `["script", "noscript", "style", "textarea", "pre", "code"]`.
-
-- `ignoredClasses`: This is a list of DOM node class names to ignore when
- recursing through. By default, this value is not set.
-
-- `errorCallback`: A callback method returning a message and an error stack
- in case of an critical error during rendering. The default uses `console.error`.
-
-- `preProcess`: A callback function, `(math: string) => string`, used to process
- math expressions before rendering.
-
-The `displayMode` property of the options object is ignored, and is
-instead taken from the `display` key of the corresponding entry in the
-`delimiters` key.
-
-The same `options.macros` object (which defaults to an empty object `{}`)
-is passed into several calls to `katex.render`, so that consecutive equations
-can build up shared macros by `\gdef`.
diff --git a/website/versioned_docs/version-0.10.2/browser.md b/website/versioned_docs/version-0.10.2/browser.md
deleted file mode 100644
index 8695c426..00000000
--- a/website/versioned_docs/version-0.10.2/browser.md
+++ /dev/null
@@ -1,99 +0,0 @@
----
-id: version-0.10.2-browser
-title: Browser
-original_id: browser
----
-> KaTeX supports all major browsers, including Chrome, Safari, Firefox, Opera, Edge, and IE 9–11.
-
-## Global
-If you include the `katex.js` directly, the `katex` object will be available as
-a global variable.
-
-```html
-
-
-```
-
-KaTeX also provides minified versions:
-
-```html
-
-
-```
-
-The loading of scripts are [deferred using `defer` attribute](https://developer.mozilla.org/en/HTML/Element/script#Attributes)
-to speed up page rendering. The `katex` object will be available after
-[`DOMContentLoaded` event is fired on the `document`](https://developer.mozilla.org/ko/docs/Web/Reference/Events/DOMContentLoaded).
-If you do not use `defer`, `katex` object will be available after corresponding
-`script` tag.
-
-If KaTeX is not used immediately or not critical, it is possible to load KaTeX
-asynchronously. Add [`async` attribute](https://developer.mozilla.org/en/HTML/Element/script#Attributes)
-to `script` and use [`rel="preload"` and `onload` attribute](https://github.com/filamentgroup/loadCSS)
-on `link`.
-
-You can prefetch KaTeX fonts to prevent FOUT or FOIT. Use [Font Loading API](https://developer.mozilla.org/en-US/docs/Web/API/CSS_Font_Loading_API)
-or [Web Font Loader](https://github.com/typekit/webfontloader):
-
-```html
-
-
-```
-
-You can also use [`rel="preload"`](https://developer.mozilla.org/en-US/docs/Web/HTML/Preloading_content).
-Add ``
-to `head`. Note that [only few browsers support it](https://caniuse.com/#feat=link-rel-preload)
-and they all support WOFF2 so preloading WOFF2 fonts is enough.
-
-See [Google Web Fundamentals - Web Font Optimization](https://developers.google.com/web/fundamentals/performance/optimizing-content-efficiency/webfont-optimization)
-for more detail.
-
-## Module Loaders
-### AMD
-```html
-
-
-```
-
-### ECMAScript module
-```html
-
-
-
-```
-
-> Use [`nomodule` attribute](https://developer.mozilla.org/en/HTML/Element/script#Attributes)
-to provide a fallback for older browsers that do not support ES modules.
-
-## Download & Host Things Yourself
-Download a [KaTeX release](https://github.com/KaTeX/KaTeX/releases),
-copy `katex.js`, `katex.css`
-(or `katex.min.js` and `katex.min.css` to use minified versions),
-and the `fonts` directory, and include or import it like above.
-
-You can also build from source. See [Building from Source](node.md#building-from-source)
-for more details.
-
-## Bundler
-[Use Node.js package managers to install KaTeX and import it](node.md) in your
-project. Then bundle using bundlers like [webpack](https://webpack.js.org/) or
-[rollup.js](https://rollupjs.org/). Note that you have to bundle the stylesheet
-(`katex.css`) or include it manually.
diff --git a/website/versioned_docs/version-0.10.2/libs.md b/website/versioned_docs/version-0.10.2/libs.md
deleted file mode 100644
index 659ef42b..00000000
--- a/website/versioned_docs/version-0.10.2/libs.md
+++ /dev/null
@@ -1,51 +0,0 @@
----
-id: version-0.10.2-libs
-title: Extensions & Libraries
-original_id: libs
----
-## Extensions
-
-These extensions are provided by KaTeX.
-
-- [Auto-render](autorender.md): Automatically renders all of the math inside text
-- [Copy-tex](https://github.com/Khan/KaTeX/tree/master/contrib/copy-tex): When selecting and copying KaTeX-rendered elements, copies their LaTeX source to the clipboard
-- [`math/tex` Custom Script Type](https://github.com/Khan/KaTeX/tree/master/contrib/mathtex-script-type): Automatically displays LaTeX math inside `script` tags with `type=math/tex`
-- [mhchem](https://github.com/Khan/KaTeX/tree/master/contrib/mhchem): Write beautiful chemical equations easily
-
-## Libraries
-
-These libraries are maintained by third-parties.
-
-### Angular2+
-- [ng-katex](https://github.com/garciparedes/ng-katex): Angular module to write beautiful math expressions with TeX syntax boosted by KaTeX library
-
-### iOS
-- [KaTeX-iOS](https://github.com/ianarawjo/KaTeX-iOS): iOS UIView that renders TeX expressions with KaTeX
-
-### Android
-- [KaTeXView](https://github.com/judemanutd/KaTeXView): An android library that uses Khan Academy KaTeX for TeX math rendering.
-
-### React
-- [react-latex](https://github.com/zzish/react-latex): React component to render latex strings, based on KaTeX
-- [react-katex](https://github.com/talyssonoc/react-katex): React components that use KaTeX to typeset math expressions
-
-### Ruby
-
-- [katex-ruby](https://github.com/glebm/katex-ruby): Provides server-side rendering and integration with popular Ruby web frameworks (Rails, Hanami, and anything that uses Sprockets).
-
-### Vue
-- [vue-katex](https://github.com/lucpotage/vue-katex): Vue plugin to render TeX expressions using KaTeX.
-
-### AsciiMath
-
-If you want to render math written in [AsciiMath](http://asciimath.org/),
-you'll need to first convert AsciiMath into LaTeX input, then call KaTeX.
-
-- [asciimath2tex](https://github.com/christianp/asciimath2tex): Converts AsciiMath to TeX, with KaTeX in mind
-
-### Canvas LaTeX
-
-- [canvas-latex](https://github.com/CurriculumAssociates/canvas-latex): Renders mathematical expressions on HTML5's canvas element. Supports popular libraries like: CreateJS, and PIXI.
-
-### Web-Components
-- [katex-element](https://github.com/georges-gomes/katex-element): KaTeX wrapped in a custom element. Simply use `` in HTML - framework independent.
diff --git a/website/versioned_docs/version-0.10.2/node.md b/website/versioned_docs/version-0.10.2/node.md
deleted file mode 100644
index 44753f1e..00000000
--- a/website/versioned_docs/version-0.10.2/node.md
+++ /dev/null
@@ -1,79 +0,0 @@
----
-id: version-0.10.2-node
-title: Node.js
-original_id: node
----
-## Installation
-### npm
-Install with `npm`:
-
-```bash
-npm install katex
-# or globally
-npm install -g katex
-```
-
-### Yarn
-Install with `Yarn`:
-
-```bash
-yarn add katex
-# or globally
-yarn global add katex
-```
-
-### Building from Source
-To build you will need Git, Node.js 8 or later, and Yarn.
-
-Clone a copy of the GitHub source repository:
-```bash
-git clone https://github.com/KaTeX/KaTeX.git
-cd KaTeX
-```
-
-Then install dependencies and run `build` script:
-```bash
-yarn
-yarn build
-```
-
-It will automatically transpile code and include only necessary fonts for
-target environments specified by [Browserslist config](https://github.com/browserslist/browserslist#environment-variables).
-For example, if you are making a web app for a kiosk with Chrome 68, run
-`BROWSERSLIST="Chrome 68" yarn build` and it will produce build with no
-transpilation, as it fully supports ES6, and only include WOFF2 fonts.
-
-You can override included fonts using environment variables. Set `USE_(FONT NAME)`
-environment variable to `"true"` or `"false"`, to force a font type to be included
-or excluded, respectively.`
-
-If you'd like to use the built KaTeX in other projects, install the package by
-specifying the path:
-```bash
-yarn add /path/to/KaTeX
-# or using npm
-npm install /path/to/KaTeX
-```
-
-> You can manually download the package and source code from
-[GitHub releases](https://github.com/KaTeX/KaTeX/releases).
-
-## Importing
-KaTeX is exported as a CommonJS module, which can be imported using `require`:
-```js
-const katex = require('katex');
-```
-
-If you're using a module loader, transpiler, or bundler that supports interoperability
-between ECMAScript module and CommonJS module, you can use `import`:
-```js
-import katex from 'katex';
-```
-
-KaTeX also provides an ECMAScript module:
-```js
-import katex from 'katex/dist/katex.mjs'
-```
-
-> The ES module contains ES6 syntaxes and features, and may need transpiling to
-use in old environments:
diff --git a/website/versioned_docs/version-0.10.2/support_table.md b/website/versioned_docs/version-0.10.2/support_table.md
deleted file mode 100644
index de63c18e..00000000
--- a/website/versioned_docs/version-0.10.2/support_table.md
+++ /dev/null
@@ -1,1216 +0,0 @@
----
-id: version-0.10.2-support_table
-title: Support Table
-original_id: support_table
----
-This is a list of TeX functions, sorted alphabetically. This list includes functions that KaTeX supports and some that it doesn't support. There is a similar page, with functions [sorted by type](supported.md).
-
-If you know the shape of a character, but not its name, [Detexify](http://detexify.kirelabs.org/classify.html) can help.
-
-
-
-
-## Symbols
-
-|Symbol/Function | Rendered | Source or Comment|
-|:---------------|:------------|:-----------------|
-|\!|$n!$|`n!`|
-|\\\!|$a\!b$|`a\!b`|
-|#|$\def\bar#1{#1^2} \bar{y}$|`\def\bar#1{#1^2} \bar{y}`|
-|\\#|$\#$||
-|%||`%this is a comment`|
-|\\%|$\%$||
-|&|$\begin{matrix} a & b\cr c & d \end{matrix}$|`\begin{matrix}` `a & b \\` `c & d` `\end{matrix}`|
-|\\&|$\&$||
-|'|$'$||
-|\\\'|$\text{\'{a}}$|`\text{\'{a}}`|
-|(|$($||
-|)|$)$||
-|\\\(…\\\)|$\text{\(\frac a b\)}$|`\text{\(\frac a b\)}`|
-|\\ |$a\ b$|`a\ b`|
-|\\"|$\text{\"{a}}$|`\text{\"{a}}`|
-|\\$|$\text{\textdollar}$||
-|\\,|$a\,\,{b}$|`a\,\,{b}`|
-|\\.|$\text{\.{a}}$|`\text{\.{a}}`|
-|\\:|$a\:\:{b}$|`a\:\:{b}`|
-|\\;|$a\;\;{b}$|a`\;\;{b}`|
-|_|$x_i$|`x_i`|
-|\\_|$\_$||
-|\\\`|$\text{\`{a}}$|\text{\\'{a}}|
-|<|$<$||
-|\\=|$\text{\={a}}$|\text{\\={a}}|
-| >|$>$||
-|\\>|$a\>\>{b}$|`a\>\>{b}`|
-|\[|$[$||
-|\]|$]$||
-|{|${a}$|`{a}`|
-|}|${a}$|`{a}`|
-|\\{|$\{$||
-|\\}|$\}$||
-|||$\vert$||
-|\\||$\Vert$||
-|~|$\text{no~no~no~breaks}$|`\text{no~no~no~breaks}`|
-|\\~|$\text{\~{a}}$|\text{\\~{a}}|
-|\\\\|$\begin{matrix} a & b\\ c & d\end{matrix}$|`\begin{matrix}` `a & b \\` `c & d` `\end{matrix}`|
-|^|$x^i$|`x^i`|
-|\\^|$\text{\^{a}}$|\text{\\^{a}}|
-
-## A
-
-|Symbol/Function | Rendered | Source or Comment|
-|:---------------|:------------|:-----------------|
-|\AA|$\text{\AA}$|`\text{\AA}`|
-|\aa|$\text{\aa}$|`\text{\aa}`|
-|\above|${a \above{2pt} b+1}$|`{a \above{2pt} b+1}`|
-|\abovewithdelims|Not supported||
-|\acute|$\acute e$|`\acute e`|
-|\AE|$\text{\AE}$|`\text{\AE}`|
-|\ae|$\text{\ae}$|`\text{\ae}`|
-|\alef|$\alef$||
-|\alefsym|$\alefsym$||
-|\aleph|$\aleph$||
-|{align}|Not supported|see `{aligned}`|
-|{aligned}|$\begin{aligned}a&=b+c\\d+e&=f\end{aligned}$|`\begin{aligned}` `a&=b+c \\` `d+e&=f` `\end{aligned}`|
-|{alignat}|Not supported|see `{alignedat}`|
-|{alignedat}|$\begin{alignedat}{2}10&x+&3&y=2\\3&x+&13&y=4\end{alignedat}$|`\begin{alignedat}{2}` `10&x+ &3&y = 2 \\` ` 3&x+&13&y = 4` `\end{alignedat}`|
-|\allowbreak|||
-|\Alpha|$\Alpha$||
-|\alpha|$\alpha$||
-|\amalg|$\amalg$||
-|\And|$\And$||
-|\and|Not supported|[Deprecated](https://en.wikipedia.org/wiki/Help:Displaying_a_formula#Deprecated_syntax)|
-|\ang|Not supported|[Deprecated](https://en.wikipedia.org/wiki/Help:Displaying_a_formula#Deprecated_syntax)|
-|\angl|Not supported||
-|\angle|$\angle$||
-|\approx|$\approx$||
-|\approxeq|$\approxeq$||
-|\arccos|$\arccos$||
-|\arcctg|$\arcctg$||
-|\arcsin|$\arcsin$||
-|\arctan|$\arctan$||
-|\arctg|$\arctg$||
-|\arg|$\arg$||
-|\argmax|$\argmax$||
-|\argmin|$\argmin$||
-|{array}|$\begin{array}{cc}a&b\\c&d\end{array}$ | `\begin{array}{cc}` `a & b \\` `c & d` `\end{array}`|
-|\array|Not supported|see `{array}`|
-|\arraystretch|$\def\arraystretch{1.5}\begin{array}{cc}a&b\\c&d\end{array}$|`\def\arraystretch{1.5}` `\begin{array}{cc}` `a & b \\` `c & d` `\end{array}`|
-|\Arrowvert|Not supported||
-|\arrowvert|Not supported||
-|\ast|$\ast$||
-|\asymp|$\asymp$||
-|\atop|${a \atop b}$|`{a \atop b}`|
-|\atopwithdelims|Not supported||
-
-## B
-
-|Symbol/Function | Rendered | Source or Comment|
-|:---------------|:------------|:-----------------|
-|\backepsilon|$\backepsilon$||
-|\backprime|$\backprime$||
-|\backsim|$\backsim$||
-|\backsimeq|$\backsimeq$||
-|\backslash|$\backslash$||
-|\bar|$\bar{y}$|`\bar{y}`|
-|\barwedge|$\barwedge$||
-|\Bbb|$\Bbb{ABC}$|`\Bbb{ABC}` KaTeX supports A-Z & k
-|\Bbbk|$\Bbbk$||
-|\bbox|Not supported||
-|\bcancel|$\bcancel{5}$|`\bcancel{5}`|
-|\because|$\because$||
-|\begin|$\begin{matrix} a & b\\ c & d\end{matrix}$|`\begin{matrix}` `a & b \\` `c & d` `\end{matrix}`|
-|\begingroup|$\begingroup a}$|`\begingroup a}`|
-|\Beta|$\Beta$||
-|\beta|$\beta$||
-|\beth|$\beth$||
-|\between|$\between$||
-|\bf|$\bf AaBb12$|`\bf AaBb12`|
-|\bfseries|Not supported||
-|\big|$\big(\big)$|`\big(\big)`|
-|\Big|$\Big(\Big)$|`\Big(\Big)`|
-|\bigcap|$\bigcap$||
-|\bigcirc|$\bigcirc$||
-|\bigcup|$\bigcup$||
-|\bigg|$\bigg(\bigg)$|`\bigg(\bigg)`|
-|\Bigg|$\Bigg(\Bigg)$|`\Bigg(\Bigg)`|
-|\biggl|$\biggl($|`\biggl(`|
-|\Biggl|$\Biggl($|`\Biggl(`|
-|\biggm|$\biggm\vert$|`\biggm\vert`|
-|\Biggm|$\Biggm\vert$|`\Biggm\vert`|
-|\biggr|$\biggr)$|`\biggr)`|
-|\Biggr|$\Biggr)$|`\Biggr)`|
-|\bigl|$\bigl($|`\bigl(`|
-|\Bigl|$\Bigl($|`\Bigl(`|
-|\bigm|$\bigm\vert$|`\bigm\vert`|
-|\Bigm|$\Bigm\vert$|`\Bigm\vert`|
-|\bigodot|$\bigodot$||
-|\bigominus|Not supported|[Issue #1222](https://github.com/KaTeX/KaTeX/issues/1222)|
-|\bigoplus|$\bigoplus$||
-|\bigoslash|Not supported|[Issue #1222](https://github.com/KaTeX/KaTeX/issues/1222)|
-|\bigotimes|$\bigotimes$||
-|\bigr|$\bigr)$|`\bigr)`|
-|\Bigr|$\Bigr)$|`\Bigr)`|
-|\bigsqcap|Not supported|[Issue #1222](https://github.com/KaTeX/KaTeX/issues/1222)|
-|\bigsqcup|$\bigsqcup$||
-|\bigstar|$\bigstar$||
-|\bigtriangledown|$\bigtriangledown$||
-|\bigtriangleup|$\bigtriangleup$||
-|\biguplus|$\biguplus$||
-|\bigvee|$\bigvee$||
-|\bigwedge|$\bigwedge$||
-|\binom|$\binom n k$|`\binom n k`|
-|\blacklozenge|$\blacklozenge$||
-|\blacksquare|$\blacksquare$||
-|\blacktriangle|$\blacktriangle$||
-|\blacktriangledown|$\blacktriangledown$||
-|\blacktriangleleft|$\blacktriangleleft$||
-|\blacktriangleright|$\blacktriangleright$||
-|\bm|$\bm{AaBb}$|`\bm{AaBb}`|
-|{Bmatrix}|$\begin{Bmatrix}a&b\\c&d\end{Bmatrix}$|`\begin{Bmatrix}` `a & b \\` `c & d` `\end{Bmatrix}`|
-|{bmatrix}|$\begin{bmatrix}a&b\\c&d\end{bmatrix}$|`\begin{bmatrix}` `a & b \\` `c & d` `\end{bmatrix}`|
-|\bmod|$a \bmod b$|`a \bmod b`|
-|\bold|$\bold{AaBb123}$|`\bold{AaBb123}`|
-|\boldsymbol|$\boldsymbol{AaBb}$|`\boldsymbol{AaBb}`|
-|\bot|$\bot$||
-|\bowtie|$\bowtie$||
-|\Box|$\Box$||
-|\boxdot|$\boxdot$||
-|\boxed|$\boxed{ab}$|`\boxed{ab}`|
-|\boxminus|$\boxminus$||
-|\boxplus|$\boxplus$||
-|\boxtimes|$\boxtimes$||
-|\brace|${n\brace k}$|`{n\brace k}`|
-|\bracevert|Not supported||
-|\brack|${n\brack k}$|`{n\brack k}`|
-|\breve|$\breve{eu}$|`\breve{eu}`|
-|\buildrel|Not supported||
-|\bull|$\bull$||
-|\bullet|$\bullet$||
-|\Bumpeq|$\Bumpeq$||
-|\bumpeq|$\bumpeq$||
-
-## C
-
-|Symbol/Function | Rendered | Source or Comment|
-|:---------------|:------------|:-----------------|
-|\C|Not supported|[Deprecated](https://en.wikipedia.org/wiki/Help:Displaying_a_formula#Deprecated_syntax)|
-|\cal|Not supported|See `\mathcal`
-|\cancel|$\cancel{5}$|`\cancel{5}`|
-|\cancelto|Not supported||
-|\Cap|$\Cap$||
-|\cap|$\cap$||
-|{cases}|$\begin{cases}a&\text{if }b\\c&\text{if }d\end{cases}$|`\begin{cases}` `a &\text{if } b \\` `c &\text{if } d` `\end{cases}`|
-|\cases|Not supported|see `{cases}`|
-|{CD}|Not supported||
-|\cdot|$\cdot$||
-|\cdotp|$\cdotp$||
-|\cdots|$\cdots$||
-|\ce |${\mathrm{C}{\vphantom{X}}_{\smash[t]{6}}\mathrm{H}{\vphantom{X}}_{\smash[t]{5}}{-}\mathrm{CHO}}$|`\ce{C6H5-CHO}` Requires an [extension](https://github.com/KaTeX/KaTeX/tree/master/contrib/mhchem/)|
-|\cee|Not supported|Deprecated by mhchem
-|\centerdot|$a\centerdot b$|`a\centerdot b`|
-|\cf|Not supported|Deprecated by mhchem|
-|\cfrac|$\cfrac{2}{1+\cfrac{2}{1+\cfrac{2}{1}}}$|`\cfrac{2}{1+\cfrac{2}{1+\cfrac{2}{1}}}`|
-|\check|$\check{oe}$|`\check{oe}`|
-|\ch|$\ch$||
-|\checkmark|$\checkmark$||
-|\Chi|$\Chi$||
-|\chi|$\chi$||
-|\choose|${n+1 \choose k+2}$|`{n+1 \choose k+2}`|
-|\circ|$\circ$||
-|\circeq|$\circeq$||
-|\circlearrowleft|$\circlearrowleft$||
-|\circlearrowright|$\circlearrowright$||
-|\circledast|$\circledast$||
-|\circledcirc|$\circledcirc$||
-|\circleddash|$\circleddash$||
-|\circledR|$\circledR$||
-|\circledS|$\circledS$||
-|\class|Not supported|A PR is pending.
-|\cline|Not supported|[Issue #269](https://github.com/KaTeX/KaTeX/issues/269)|
-|\clubs|$\clubs$||
-|\clubsuit|$\clubsuit$||
-|\cnums|$\cnums$||
-|\colon|$\colon$||
-|\Colonapprox|$\Colonapprox$||
-|\colonapprox|$\colonapprox$||
-|\Coloneq|$\Coloneq$||
-|\coloneq|$\coloneq$||
-|\Coloneqq|$\Coloneqq$||
-|\coloneqq|$\coloneqq$||
-|\Colonsim|$\Colonsim$||
-|\colonsim|$\colonsim$||
-|\color|$\color{#0000FF} AaBb123$|`\color{#0000FF} AaBb123`|
-|\colorbox|$\colorbox{red}{Black on red}$|`\colorbox{red}{Black on red}`|
-|\complement|$\complement$||
-|\Complex|$\Complex$||
-|\cong|$\cong$||
-|\Coppa|Not supported||
-|\coppa|Not supported||
-|\coprod|$\coprod$||
-|\copyright|$\copyright$||
-|\cos|$\cos$||
-|\cosec|$\cosec$||
-|\cosh|$\cosh$||
-|\cot|$\cot$||
-|\cotg|$\cotg$||
-|\coth|$\coth$||
-|\cr|$\begin{matrix} a & b\cr c & d \end{matrix}$|`\begin{matrix}` `a & b \cr` `c & d` `\end{matrix}`|
-|\csc|$\csc$||
-|\cssId|Not supported|A PR is pending.
-|\ctg|$\ctg$||
-|\cth|$\cth$||
-|\Cup|$\Cup$||
-|\cup|$\cup$||
-|\curlyeqprec|$\curlyeqprec$||
-|\curlyeqsucc|$\curlyeqsucc$||
-|\curlyvee|$\curlyvee$||
-|\curlywedge|$\curlywedge$||
-|\curvearrowleft|$\curvearrowleft$||
-|\curvearrowright|$\curvearrowright$||
-
-## D
-
-|Symbol/Function | Rendered | Source or Comment|
-|:---------------|:------------|:-----------------|
-|\dag|$\dag$||
-|\Dagger|$\Dagger$||
-|\dagger|$\dagger$||
-|\daleth|$\daleth$||
-|\Darr|$\Darr$||
-|\dArr|$\dArr$||
-|\darr|$\darr$||
-{darray}|$\begin{darray}{cc}a&b\\c&d\end{darray}$ | `\begin{darray}{cc}` `a & b \\` `c & d` `\end{darray}`|
-|\dashleftarrow|$\dashleftarrow$||
-|\dashrightarrow|$\dashrightarrow$||
-|\dashv|$\dashv$||
-|\dbinom|$\dbinom n k$|`\dbinom n k`|
-|\dblcolon|$\dblcolon$||
-|{dcases}|$\begin{dcases}a&\text{if }b\\c&\text{if }d\end{dcases}$|`\begin{dcases}` `a &\text{if } b \\` `c &\text{if } d` `\end{dcases}`|
-|\ddag|$\ddag$||
-|\ddagger|$\ddagger$||
-|\ddddot|Not supported||
-|\dddot|Not supported||
-|\ddot|$\ddot x$|`\ddot x`|
-|\ddots|$\ddots$||
-|\DeclareMathOperator|Not supported||
-|\def|$\def\foo{x^2} \foo + \foo$|`\def\foo{x^2} \foo + \foo`|
-|\definecolor|Not supported|[Issue #750](https://github.com/KaTeX/KaTeX/issues/750)|
-|\deg|$\deg$||
-|\degree|$\degree$||
-|\delta|$\delta$||
-|\Delta|$\Delta$||
-|\det|$\det$||
-|\Digamma|Not supported||
-|\digamma|$\digamma$||
-|\dfrac|$\dfrac{a-1}{b-1}$|`\dfrac{a-1}{b-1}`|
-|\diagdown|$\diagdown$||
-|\diagup|$\diagup$||
-|\Diamond|$\Diamond$||
-|\diamond|$\diamond$||
-|\diamonds|$\diamonds$||
-|\diamondsuit|$\diamondsuit$||
-|\dim|$\dim$||
-|\displaylines|Not supported||
-|\displaystyle|$\displaystyle\sum_0^n$|`\displaystyle\sum_0^n`|
-|\div|$\div$||
-|\divideontimes|$\divideontimes$||
-|\dot|$\dot x$|`\dot x`|
-|\Doteq|$\Doteq$||
-|\doteq|$\doteq$||
-|\doteqdot|$\doteqdot$||
-|\dotplus|$\dotplus$||
-|\dots|$x_1 + \dots + x_n$|`x_1 + \dots + x_n`|
-|\dotsb|$x_1 +\dotsb + x_n$|`x_1 +\dotsb + x_n`|
-|\dotsc|$x,\dotsc,y$|`x,\dotsc,y`|
-|\dotsi|$$\int_{A_1}\int_{A_2}\dotsi$$|`\int_{A_1}\int_{A_2}\dotsi`|
-|\dotsm|$x_1 x_2 \dotsm x_n$|`$x_1 x_2 \dotsm x_n`|
-|\dotso|$\dotso$||
-|\doublebarwedge|$\doublebarwedge$||
-|\doublecap|$\doublecap$||
-|\doublecup|$\doublecup$||
-|\Downarrow|$\Downarrow$||
-|\downarrow|$\downarrow$||
-|\downdownarrows|$\downdownarrows$||
-|\downharpoonleft|$\downharpoonleft$||
-|\downharpoonright|$\downharpoonright$||
-
-## E
-
-|Symbol/Function | Rendered | Source or Comment|
-|:---------------|:------------|:-----------------|
-|\ell|$\ell$||
-|\else|Not supported|[Issue #1003](https://github.com/KaTeX/KaTeX/issues/1003)|
-|\em|Not supported||
-|\emph|Not supported||
-|\empty|$\empty$||
-|\emptyset|$\emptyset$||
-|\enclose|Not supported|Non standard
-|\end|$\begin{matrix} a & b\\ c & d\end{matrix}$|`\begin{matrix}` `a & b \\` `c & d` `\end{matrix}`|
-|\endgroup|${a\endgroup$|`{a\endgroup`|
-|\enspace|$a\enspace b$|`a\enspace b`|
-|\Epsilon|$\Epsilon$||
-|\epsilon|$\epsilon$||
-|\eqalign|Not supported||
-|\eqalignno|Not supported||
-|\eqcirc|$\eqcirc$||
-|\Eqcolon|$\Eqcolon$||
-|\eqcolon|$\eqcolon$||
-|{equation}|Not supported|[Issue #445](https://github.com/KaTeX/KaTeX/issues/445)|
-|{eqnarray}|Not supported||
-|\Eqqcolon|$\Eqqcolon$||
-|\eqqcolon|$\eqqcolon$||
-|\eqref|Not supported|[Issue #350](https://github.com/KaTeX/KaTeX/issues/350)|
-|\eqsim|$\eqsim$||
-|\eqslantgtr|$\eqslantgtr$||
-|\eqslantless|$\eqslantless$||
-|\equiv|$\equiv$||
-|\Eta|$\Eta$||
-|\eta|$\eta$||
-|\eth|$\eth$||
-|\euro|Not supported||
-|\exist|$\exist$||
-|\exists|$\exists$||
-|\exp|$\exp$||
-
-## F
-
-|Symbol/Function | Rendered | Source or Comment|
-|:---------------|:------------|:-----------------|
-|\fallingdotseq|$\fallingdotseq$||
-|\fbox|$\fbox{Hi there!}$|`\fbox{Hi there!}`|
-|\fcolorbox|$\fcolorbox{red}{aqua}{A}$|`\fcolorbox{red}{aqua}{A}`|
-|\fi|Not supported|[Issue #1003](https://github.com/KaTeX/KaTeX/issues/1003)|
-|\Finv|$\Finv$||
-|\flat|$\flat$||
-|\footnotesize|$\footnotesize footnotesize$|`\footnotesize footnotesize`|
-|\forall|$\forall$||
-|\frac|$\frac a b$|`\frac a b`|
-|\frak|$\frak{AaBb}$|`\frak{AaBb}`|
-|\frown|$\frown$||
-
-## G
-
-|Symbol/Function | Rendered | Source or Comment|
-|:---------------|:------------|:-----------------|
-|\Game|$\Game$||
-|\Gamma|$\Gamma$||
-|\gamma|$\gamma$||
-|{gather}|Not supported|see `{gathered}`|
-|{gathered}|$\begin{gathered}a=b\\e=b+c\end{gathered}$|`\begin{gathered}` `a=b \\ ` `e=b+c` `\end{gathered}`|
-|\gcd|$\gcd$||
-|\gdef|$\gdef\bar#1{#1^2} \bar{y} + \bar{y}$|`\gdef\bar#1{#1^2} \bar{y} + \bar{y}`|
-|\ge|$\ge$||
-|\geneuro|Not supported||
-|\geneuronarrow|Not supported||
-|\geneurowide|Not supported||
-|\genfrac|$\genfrac ( ] {2pt}{0}a{a+1}$|`\genfrac ( ] {2pt}{0}a{a+1}`|
-|\geq|$\geq$||
-|\geqq|$\geqq$||
-|\geqslant|$\geqslant$||
-|\gets|$\gets$||
-|\gg|$\gg$||
-|\ggg|$\ggg$||
-|\gggtr|$\gggtr$||
-|\gimel|$\gimel$||
-|\global|$\global\def\add#1#2{#1+#2} \add 2 3$|`\global\def\add#1#2{#1+#2} \add 2 3`|
-|\gnapprox|$\gnapprox$||
-|\gneq|$\gneq$||
-|\gneqq|$\gneqq$||
-|\gnsim|$\gnsim$||
-|\grave|$\grave{eu}$|`\grave{eu}`|
-|\gt|$a \gt b$|`a \gt b`|
-|\gtrdot|$\gtrdot$||
-|\gtrapprox|$\gtrapprox$||
-|\gtreqless|$\gtreqless$||
-|\gtreqqless|$\gtreqqless$||
-|\gtrless|$\gtrless$||
-|\gtrsim|$\gtrsim$||
-|\gvertneqq|$\gvertneqq$||
-
-## H
-
-|Symbol/Function | Rendered | Source or Comment|
-|:---------------|:------------|:-----------------|
-|\H|$\text{\H{a}}$|`\text{\H{a}}`|
-|\Harr|$\Harr$||
-|\hArr|$\hArr$||
-|\harr|$\harr$||
-|\hat|$\hat{\theta}$|`\hat{\theta}`|
-|\hbar|$\hbar$||
-|\hbox|Not supported||
-|\hdashline|$\begin{matrix}a&b\\ \hdashline c &d\end{matrix}$|`\begin{matrix}` `a & b \\` `\hdashline` `c & d` `\end{matrix}`|
-|\hearts|$\hearts$||
-|\heartsuit|$\heartsuit$||
-|\hfil|Not supported||
-|\hfill|Not supported|Issues [#164](https://github.com/KaTeX/KaTeX/issues/164) & [#269](https://github.com/KaTeX/KaTeX/issues/269)|
-|\hline|$\begin{matrix}a&b\\ \hline c &d\end{matrix}$|`\begin{matrix}` `a & b \\ \hline` `c & d` `\end{matrix}`|
-|\hom|$\hom$||
-|\hookleftarrow|$\hookleftarrow$||
-|\hookrightarrow|$\hookrightarrow$||
-|\hphantom|$a\hphantom{bc}d$|`a\hphantom{bc}d`|
-|\href|$\href{https://katex.org/}{\KaTeX}$|`\href{https://katex.org/}{\KaTeX}`|
-|\hskip|$w\hskip1em i\hskip2em d$|`w\hskip1em i\hskip2em d`|
-|\hslash|$\hslash$||
-|\hspace|$s\hspace7ex k$|`s\hspace7ex k`|
-|\huge|$\huge huge$|`\huge huge`|
-|\Huge|$\Huge Huge$|`\Huge Huge`|
-
-## I
-
-|Symbol/Function | Rendered | Source or Comment|
-|:---------------|:------------|:-----------------|
-|\i|$\text{\i}$|`\text{\i}`|
-|\idotsint|Not supported||
-|\iddots|Not supported|[Issue #1223](https://github.com/KaTeX/KaTeX/issues/1223)|
-|\if|Not supported|[Issue #1003](https://github.com/KaTeX/KaTeX/issues/1003)|
-|\iff|$A\iff B$|`A\iff B`|
-|\ifmode|Not supported|[Issue #1003](https://github.com/KaTeX/KaTeX/issues/1003)|
-|\ifx|Not supported|[Issue #1003](https://github.com/KaTeX/KaTeX/issues/1003)|
-|\iiiint|Not supported||
-|\iiint|$\iiint$||
-|\iint|$\iint$||
-|\Im|$\Im$||
-|\image|$\image$||
-|\imath|$\imath$||
-|\impliedby|$P\impliedby Q$|`P\impliedby Q`|
-|\implies|$P\implies Q$|`P\implies Q`|
-|\in|$\in$||
-|\inf|$\inf$||
-|\infin|$\infin$||
-|\infty|$\infty$||
-|\injlim|Not supported||
-|\int|$\int$||
-|\intercal|$\intercal$||
-|\intop|$\intop$||
-|\Iota|$\Iota$||
-|\iota|$\iota$||
-|\isin|$\isin$||
-|\it|${\it AaBb}$|`{\it AaBb}`|
-|\itshape|Not supported||
-
-## JK
-
-|Symbol/Function | Rendered | Source or Comment|
-|:---------------|:------------|:-----------------|
-|\j|$\text{\j}$|`\text{\j}`|
-|\jmath|$\jmath$||
-|\Join|$\Join$||
-|\Kappa|$\Kappa$||
-|\kappa|$\kappa$||
-|\KaTeX|$\KaTeX$||
-|\ker|$\ker$||
-|\kern|$I\kern-2.5pt R$|`I\kern-2.5pt R`|
-|\Koppa|Not supported||
-|\koppa|Not supported||
-
-## L
-
-|Symbol/Function | Rendered | Source or Comment|
-|:---------------|:------------|:-----------------|
-|\L|Not supported||
-|\l|Not supported||
-|\Lambda|$\Lambda$||
-|\lambda|$\lambda$||
-|\label|Not supported||
-|\land|$\land$||
-|\lang|$\lang A\rangle$|`\lang A\rangle`|
-|\langle|$\langle A\rangle$|`\langle A\rangle`|
-|\Larr|$\Larr$||
-|\lArr|$\lArr$||
-|\larr|$\larr$||
-|\large|$\large large$|`\large large`|
-|\Large|$\Large Large$|`\Large Large`|
-|\LARGE|$\LARGE LARGE$|`\LARGE LARGE`|
-|\LaTeX|$\LaTeX$||
-|\lBrace|$\lBrace$||
-|\lbrace|$\lbrace$||
-|\lbrack|$\lbrack$||
-|\lceil|$\lceil$||
-|\ldotp|$\ldotp$||
-|\ldots|$\ldots$||
-|\le|$\le$||
-|\leadsto|$\leadsto$||
-|\left|$\left\lbrace \dfrac ab \right.$|`\left\lbrace \dfrac ab \right.`|
-|\leftarrow|$\leftarrow$||
-|\Leftarrow|$\Leftarrow$||
-|\LeftArrow|Not supported|Non standard
-|\leftarrowtail|Not supported||
-|\leftharpoondown|$\leftharpoondown$||
-|\leftharpoonup|$\leftharpoonup$||
-|\leftleftarrows|$\leftleftarrows$||
-|\Leftrightarrow|$\Leftrightarrow$||
-|\leftrightarrow|$\leftrightarrow$||
-|\leftrightarrows|$\leftrightarrows$||
-|\leftrightharpoons|$\leftrightharpoons$||
-|\leftrightsquigarrow|$\leftrightsquigarrow$||
-|\leftroot|Not supported||
-|\leftthreetimes|$\leftthreetimes$||
-|\leq|$\leq$||
-|\leqalignno|Not supported||
-|\leqq|$\leqq$||
-|\leqslant|$\leqslant$||
-|\lessapprox|$\lessapprox$||
-|\lessdot|$\lessdot$||
-|\lesseqgtr|$\lesseqgtr$||
-|\lesseqqgtr|$\lesseqqgtr$||
-|\lessgtr|$\lessgtr$||
-|\lesssim|$\lesssim$||
-|\let|Not supported|[Issue #1413](https://github.com/KaTeX/KaTeX/issues/1413)|
-|\lfloor|$\lfloor$||
-|\lg|$\lg$||
-|\lgroup|$\lgroup$||
-|\lhd|$\lhd$||
-|\lim|$\lim$||
-|\liminf|$\liminf$||
-|\limits|$\lim\limits_x$|`\lim\limits_x`|
-|\limsup|$\limsup$||
-|\ll|$\ll$||
-|\llap|${=}\llap{/\,}$|`{=}\llap{/\,}`|
-|\llbracket|$\llbracket$||
-|\llcorner|$\llcorner$||
-|\Lleftarrow|$\Lleftarrow$||
-|\lll|$\lll$||
-|\llless|$\llless$||
-|\lmoustache|$\lmoustache$||
-|\ln|$\ln$||
-|\lnapprox|$\lnapprox$||
-|\lneq|$\lneq$||
-|\lneqq|$\lneqq$||
-|\lnot|$\lnot$||
-|\lnsim|$\lnsim$||
-|\log|$\log$||
-|\Longleftarrow|$\Longleftarrow$||
-|\longleftarrow|$\longleftarrow$||
-|\Longleftrightarrow|$\Longleftrightarrow$||
-|\longleftrightarrow|$\longleftrightarrow$||
-|\longmapsto|$\longmapsto$||
-|\Longrightarrow|$\Longrightarrow$||
-|\longrightarrow|$\longrightarrow$||
-|\looparrowleft|$\looparrowleft$||
-|\looparrowright|$\looparrowright$||
-|\lor|$\lor$||
-|\lower|Not supported||
-|\lozenge|$\lozenge$||
-|\lparen|$\lparen$||
-|\Lrarr|$\Lrarr$||
-|\lrArr|$\lrArr$||
-|\lrarr|$\lrarr$||
-|\lrcorner|$\lrcorner$||
-|\lq|$\lq$||
-|\Lsh|$\Lsh$||
-|\lt|$\lt$||
-|\ltimes|$\ltimes$||
-|\lVert|$\lVert$||
-|\lvert|$\lvert$||
-|\lvertneqq|$\lvertneqq$||
-
-## M
-
-|Symbol/Function | Rendered | Source or Comment|
-|:---------------|:------------|:-----------------|
-|\maltese|$\maltese$||
-|\mapsto|$\mapsto$||
-|\mathbb|$\mathbb{AB}$|`\mathbb{AB}` KaTeX supports A-Z k|
-|\mathbf|$\mathbf{AaBb123}$|`\mathbf{AaBb123}`|
-|\mathbin|$a\mathbin{!}b$|`a\mathbin{!}b`|
-|\mathcal|$\mathcal{AaBb123}$|`\mathcal{AaBb123}`|
-|\mathchoice|$a\mathchoice{\,}{\,\,}{\,\,\,}{\,\,\,\,}b$|`a\mathchoice{\,}{\,\,}{\,\,\,}{\,\,\,\,}b`|
-|\mathclap|$\displaystyle\sum_{\mathclap{1\le i\le n}} x_{i}$|`\sum_{\mathclap{1\le i\le n}} x_{i}`|
-|\mathclose|$a + (b\mathclose\gt + c$|`a + (b\mathclose\gt + c`|
-|\mathellipsis|$\mathellipsis$||
-|\mathfrak|$\mathfrak{AaBb}$|`\mathfrak{AaBb}` KaTeX supports A-Za-z|
-|\mathinner|$ab\mathinner{\text{inside}}cd$|`ab\mathinner{\text{inside}}cd`|
-|\mathit|$\mathit{AaBb}$|`\mathit{AaBb}` KaTeX supports A-Za-z|
-|\mathllap|${=}\mathllap{/\,}$|`{=}\mathllap{/\,}`|
-|\mathnormal|$\mathnormal{AaBb}$|`\mathnormal{AaBb}` KaTeX supports A-Za-z|
-|\mathop|$\mathop{\star}_a^b$|`\mathop{\star}_a^b`|
-|\mathopen|$a + \mathopen\lt b) + c$|`a + \mathopen\lt b) + c`|
-|\mathord|$1\mathord{,}234{,}567$|`1\mathord{,}234{,}567`|
-|\mathpunct|$A\mathpunct{-}B$|`A\mathpunct{-}B`|
-|\mathrel|$a \mathrel{\#} b$|`a \mathrel{\#} b`|
-|\mathrlap|$\mathrlap{\,/}{=}$|`\mathrlap{\,/}{=}`|
-|\mathring|$\mathring{a}$|`\mathring{a}`|
-|\mathrm|$\mathrm{AaBb123}$|`\mathrm{AaBb123}`|
-|\mathscr|$\mathscr{AB}$|`\mathscr{AaBb123}` KaTeX supports A-Z|
-|\mathsf|$\mathsf{AaBb123}$|`\mathsf{AaBb123}`|
-|\mathsterling|$\mathsterling$||
-|\mathstrut|Not supported||
-|\mathtip|Not supported||
-|\mathtt|$\mathtt{AaBb123}$|`\mathtt{AaBb123}`|
-|\matrix|Not supported|See `{matrix}`|
-|{matrix}|$\begin{matrix}a&b\\c&d\end{matrix}$|`\begin{matrix}` `a & b \\` `c & d` `\end{matrix}`|
-|\max|$\max$||
-|\mbox|Not supported||
-|\md|Not supported||
-|\mdseries|Not supported||
-|\measuredangle|$\measuredangle$||
-|\medspace|$a\medspace b$|`a\medspace b`|
-|\mho|$\mho$||
-|\mid|$\{x∈ℝ\mid x>0\}$|`\{x∈ℝ\mid x>0\}`|
-|\middle|$P\left(A\middle\vert B\right)$|`P\left(A\middle\vert B\right)`|
-|\min|$\min$||
-|\mit|Not supported|See `\mathit`|
-|\mkern|$a\mkern18mu b$|`a\mkern18mu b`|
-|\mmlToken|Not supported||
-|\mod|$3\equiv 5 \mod 2$|`3\equiv 5 \mod 2`|
-|\models|$\models$||
-|\moveleft|Not supported||
-|\moveright|Not supported||
-|\mp|$\mp$||
-|\mskip|$a\mskip{10mu}b$|`a\mskip{10mu}b`|
-|\mspace|Not supported||
-|\Mu|$\Mu$||
-|\mu|$\mu$||
-|\multicolumn|Not supported|[Issue #269](https://github.com/KaTeX/KaTeX/issues/269)|
-|{multiline}|Not supported||
-|\multimap|$\multimap$||
-
-## N
-
-|Symbol/Function | Rendered | Source or Comment|
-|:---------------|:------------|:-----------------|
-|\N|$\N$||
-|\nabla|$\nabla$||
-|\natnums|$\natnums$||
-|\natural|$\natural$||
-|\negmedspace|$a\negmedspace b$|`a\negmedspace b`|
-|\ncong|$\ncong$||
-|\ne|$\ne$||
-|\nearrow|$\nearrow$||
-|\neg|$\neg$||
-|\negthickspace|$a\negthickspace b$|`a\negthickspace b`|
-|\negthinspace|$a\negthinspace b$|`a\negthinspace b`|
-|\neq|$\neq$||
-|\newcommand|$\newcommand\chk{\checkmark} \chk$|`\newcommand\chk{\checkmark} \chk`|
-|\newenvironment|Not supported|[Issue #37](https://github.com/KaTeX/KaTeX/issues/37)|
-|\Newextarrow|Not supported||
-|\newline|$a\newline b$|`a\newline b`|
-|\nexists|$\nexists$||
-|\ngeq|$\ngeq$||
-|\ngeqq|$\ngeqq$||
-|\ngeqslant|$\ngeqslant$||
-|\ngtr|$\ngtr$||
-|\ni|$\ni$||
-|\nleftarrow|$\nleftarrow$||
-|\nLeftarrow|$\nLeftarrow$||
-|\nLeftrightarrow|$\nLeftrightarrow$||
-|\nleftrightarrow|$\nleftrightarrow$||
-|\nleq|$\nleq$||
-|\nleqq|$\nleqq$||
-|\nleqslant|$\nleqslant$||
-|\nless|$\nless$||
-|\nmid|$\nmid$||
-|\nobreak|||
-|\nobreakspace|$a\nobreakspace b$|`a\nobreakspace b`|
-|\nolimits|$\lim\nolimits_x$|`\lim\nolimits_x`|
-|\normalfont|Not supported||
-|\normalsize|$\normalsize normalsize$|`\normalsize normalsize`|
-|\not|$\not =$|`\not =`|
-|\notag|Not supported||
-|\notin|$\notin$||
-|\notni|$\notni$||
-|\nparallel|$\nparallel$||
-|\nprec|$\nprec$||
-|\npreceq|$\npreceq$||
-|\nRightarrow|$\nRightarrow$||
-|\nrightarrow|$\nrightarrow$||
-|\nshortmid|$\nshortmid$||
-|\nshortparallel|$\nshortparallel$||
-|\nsim|$\nsim$||
-|\nsubseteq|$\nsubseteq$||
-|\nsubseteqq|$\nsubseteqq$||
-|\nsucc|$\nsucc$||
-|\nsucceq|$\nsucceq$||
-|\nsupseteq|$\nsupseteq$||
-|\nsupseteqq|$\nsupseteqq$||
-|\ntriangleleft|$\ntriangleleft$||
-|\ntrianglelefteq|$\ntrianglelefteq$||
-|\ntriangleright|$\ntriangleright$||
-|\ntrianglerighteq|$\ntrianglerighteq$||
-|\Nu|$\Nu$||
-|\nu|$\nu$||
-|\nVDash|$\nVDash$||
-|\nVdash|$\nVdash$||
-|\nvDash|$\nvDash$||
-|\nvdash|$\nvdash$||
-|\nwarrow|$\nwarrow$||
-
-## O
-
-|Symbol/Function | Rendered | Source or Comment|
-|:---------------|:------------|:-----------------|
-|\O|$\text{\O}$|`\text{\O}`|
-|\o|$\text{\o}$|`\text{\o}`|
-|\odot|$\odot$||
-|\OE|$\text{\OE}$|`\text{\OE}`|
-|\oe|$\text{\oe}$|`\text{\oe}`|
-|\officialeuro|Not supported||
-|\oiiint|$\oiiint$||
-|\oiint|$\oiint$||
-|\oint|$\oint$||
-|\oldstyle|Not supported||
-|\omega|$\omega$||
-|\Omega|$\Omega$||
-|\Omicron|$\Omicron$||
-|\omicron|$\omicron$||
-|\ominus|$\ominus$||
-|\operatorname|$\operatorname{asin} x$|\operatorname{asin} x|
-|\operatorname\*|Not supported|[Issue #1242](https://github.com/KaTeX/KaTeX/issues/1242)|
-|\oplus|$\oplus$||
-|\or|Not supported||
-|\oslash|$\oslash$||
-|\otimes|$\otimes$||
-|\over|${a+1 \over b+2}+c$|`{a+1 \over b+2}+c`|
-|\overbrace|$\overbrace{x+⋯+x}^{n\text{ times}}$|`\overbrace{x+⋯+x}^{n\text{ times}}`|
-|\overbracket|Not supported||
-|\overgroup|$\overgroup{AB}$|`\overgroup{AB}`|
-|\overleftarrow|$\overleftarrow{AB}$|`\overleftarrow{AB}`|
-|\overleftharpoon|$\overleftharpoon{AB}$|`\overleftharpoon{AB}`|
-|\overleftrightarrow|$\overleftrightarrow{AB}$|`\overleftrightarrow{AB}`|
-|\overline|$\overline{\text{a long argument}}$|`\overline{\text{a long argument}}`|
-|\overlinesegment|$\overlinesegment{AB}$|`\overlinesegment{AB}`|
-|\overparen|Not supported|See `\overgroup`|
-|\Overrightarrow|$\Overrightarrow{AB}$|`\Overrightarrow{AB}`|
-|\overrightarrow|$\overrightarrow{AB}$|`\overrightarrow{AB}`|
-|\overrightharpoon|$\overrightharpoon{ac}$|`\overrightharpoon{ac}`|
-|\overset|$\overset{!}{=}$|`\overset{!}{=}`|
-|\overwithdelims|Not supported||
-|\owns|$\owns$||
-
-## P
-
-|Symbol/Function | Rendered | Source or Comment|
-|:---------------|:------------|:-----------------|
-|\P|$\text{\P}$|`\text{\P}`|
-|\pagecolor|Not supported|[Deprecated](https://en.wikipedia.org/wiki/Help:Displaying_a_formula#Deprecated_syntax)|
-|\parallel|$\parallel$||
-|\part|Not supported|[Deprecated](https://en.wikipedia.org/wiki/Help:Displaying_a_formula#Deprecated_syntax)|
-|\partial|$\partial$||
-|\perp|$\perp$||
-|\phantom|$\Gamma^{\phantom{i}j}_{i\phantom{j}k}$|`\Gamma^{\phantom{i}j}_{i\phantom{j}k}`|
-|\phase|Not supported||
-|\Phi|$\Phi$||
-|\phi|$\phi$||
-|\Pi|$\Pi$||
-|\pi|$\pi$||
-|{picture}|Not supported||
-|\pitchfork|$\pitchfork$||
-|\plusmn|$\plusmn$||
-|\pm|$\pm$||
-|\pmatrix|Not supported|See `{pmatrix}`|
-|{pmatrix}|$\begin{pmatrix}a&b\\c&d\end{pmatrix}$|`\begin{pmatrix}` `a & b \\` `c & d` `\end{pmatrix}`
-|\pmb|$\pmb{\mu}$|`\pmb{\mu}`|
-|\pmod|$x\pmod a$|`x\pmod a`|
-|\pod|$x \pod a$|`x \pod a`|
-|\pounds|$\pounds$||
-|\Pr|$\Pr$||
-|\prec|$\prec$||
-|\precapprox|$\precapprox$||
-|\preccurlyeq|$\preccurlyeq$||
-|\preceq|$\preceq$||
-|\precnapprox|$\precnapprox$||
-|\precneqq|$\precneqq$||
-|\precnsim|$\precnsim$||
-|\precsim|$\precsim$||
-|\prime|$\prime$||
-|\prod|$\prod$||
-|\projlim|Not supported||
-|\propto|$\propto$||
-|\providecommand|$\providecommand\greet{\text{Hello}} \greet$|`\providecommand\greet{\text{Hello}} \greet`|
-|\psi|$\psi$||
-|\Psi|$\Psi$||
-|\pu |${123~\mathchoice{\textstyle\frac{\mathrm{kJ}}{\mathrm{mol}}}{\frac{\mathrm{kJ}}{\mathrm{mol}}}{\frac{\mathrm{kJ}}{\mathrm{mol}}}{\frac{\mathrm{kJ}}{\mathrm{mol}}}}$|`\pu{123 kJ//mol}` Requires an [extension](https://github.com/KaTeX/KaTeX/tree/master/contrib/mhchem/)|
-
-## QR
-
-|Symbol/Function | Rendered | Source or Comment|
-|:---------------|:------------|:-----------------|
-|\Q|Not supported|See `\Bbb{Q}`|
-|\qquad|$a\qquad\qquad{b}$|`a\qquad\qquad{b}`|
-|\quad|$a\quad\quad{b}$|`a\quad\quad{b}`|
-|\R|$\R$||
-|\r|$\text{\r{a}}$|`\text{\r{a}}`|
-|\raise|Not supported|see `\raisebox`|
-|\raisebox|$h\raisebox{2pt}{ighe}r$|`h\raisebox{2pt}{ighe}r`|
-|\rang|$\langle A\rang$|`\langle A\rang`|
-|\rangle|$\langle A\rangle$|`\langle A\rangle`|
-|\Rarr|$\Rarr$||
-|\rArr|$\rArr$||
-|\rarr|$\rarr$||
-|\rBrace|$\rBrace$||
-|\rbrace|$\rbrace$||
-|\rbrack|$\rbrack$||
-|\rceil|$\rceil$||
-|\Re|$\Re$||
-|\real|$\real$||
-|\Reals|$\Reals$||
-|\reals|$\reals$||
-|\ref|Not supported|[Issue #350](https://github.com/KaTeX/KaTeX/issues/350)|
-|\relax|||
-|\renewcommand|$\def\hail{Hi!}\renewcommand\hail{\text{Ahoy!}} \hail$|`\def\hail{Hi!}` `\renewcommand\hail{\text{Ahoy!}}` `\hail`|
-|\renewenvironment|Not supported||
-|\require|Not supported||
-|\restriction|$\restriction$||
-|\rfloor|$\rfloor$||
-|\rgroup|$\rgroup$||
-|\rhd|$\rhd$||
-|\Rho|$\Rho$||
-|\rho|$\rho$||
-|\right|$\left.\dfrac a b\right)$|`\left.\dfrac a b\right)`|
-|\Rightarrow|$\Rightarrow$||
-|\rightarrow|$\rightarrow$||
-|\rightarrowtail|$\rightarrowtail$||
-|\rightharpoondown|$\rightharpoondown$||
-|\rightharpoonup|$\rightharpoonup$||
-|\rightleftarrows|$\rightleftarrows$||
-|\rightleftharpoons|$\rightleftharpoons$||
-|\rightrightarrows|$\rightrightarrows$||
-|\rightsquigarrow|$\rightsquigarrow$||
-|\rightthreetimes|$\rightthreetimes$||
-|\risingdotseq|$\risingdotseq$||
-|\rlap|$\rlap{\,/}{=}$|`\rlap{\,/}{=}`|
-|\rm|$\rm AaBb12$|`\rm AaBb12`|
-|\rmoustache|$\rmoustache$||
-|\root|Not supported||
-|\rotatebox|Not supported|[Issue #681](https://github.com/KaTeX/KaTeX/issues/681)|
-|\rparen|$\rparen$||
-|\rq|$\rq$||
-|\rrbracket|$\rrbracket$||
-|\Rrightarrow|$\Rrightarrow$||
-|\Rsh|$\Rsh$||
-|\rtimes|$\rtimes$||
-|\Rule|Not supported|see `\rule`
-|\rule|$x\rule[6pt]{2ex}{1ex}x$|`x\rule[6pt]{2ex}{1ex}x`|
-|\rVert|$\rVert$||
-|\rvert|$\rvert$||
-
-## S
-
-|Symbol/Function | Rendered | Source or Comment|
-|:---------------|:------------|:-----------------|
-|\S|$\text{\S}$|`\text{\S}`|
-|\Sampi|Not supported||
-|\sampi|Not supported||
-|\sc|Not supported|[Issue #471](https://github.com/KaTeX/KaTeX/issues/471)|
-|\scalebox|Not supported||
-|\scr|Not supported|See `\mathscr`|
-|\scriptscriptstyle|$\scriptscriptstyle \frac cd$|`\scriptscriptstyle \frac cd`|
-|\scriptsize|$\scriptsize scriptsize$|`\scriptsize scriptsize`|
-|\scriptstyle|$\frac ab + {\scriptstyle \frac cd}$|`\frac ab + {\scriptstyle \frac cd}`|
-|\sdot|$\sdot$||
-|\searrow|$\searrow$||
-|\sec|$\sec$||
-|\sect|$\text{\sect}$|`\text{\sect}`|
-|\setlength|Not supported|[Issue #687](https://github.com/KaTeX/KaTeX/issues/687)|
-|\setminus|$\setminus$||
-|\sf|$\sf AaBb123$|`\sf AaBb123`|
-|\sharp|$\sharp$||
-|\shortmid|$\shortmid$||
-|\shortparallel|$\shortparallel$||
-|\shoveleft|Not supported||
-|\shoveright|Not supported||
-|\sideset|Not supported||
-|\Sigma|$\Sigma$||
-|\sigma|$\sigma$||
-|\sim|$\sim$||
-|\simeq|$\simeq$||
-|\sin|$\sin$||
-|\sinh|$\sinh$||
-|\sixptsize|$\sixptsize sixptsize$|`\sixptsize sixptsize`|
-|\sh|$\sh$||
-|\skew|Not supported||
-|\skip|Not supported||
-|\sl|Not supported||
-|\small|$\small small$|`\small small`|
-|\smallfrown|$\smallfrown$||
-|\smallint|$\smallint$||
-|{smallmatrix}|Not supported||
-|\smallsetminus|$\smallsetminus$||
-|\smallsmile|$\smallsmile$||
-|\smash|$\left(x^{\smash{2}}\right)$|`\left(x^{\smash{2}}\right)`|
-|\smile|$\smile$||
-|\smiley|Not supported||
-|\sout|$\sout{abc}$|`\sout{abc}`|
-|\Space|Not supported|see `\space`
-|\space|$a\space{b}$|`a\space{b}`|
-|\spades|$\spades$||
-|\spadesuit|$\spadesuit$||
-|\sphericalangle|$\sphericalangle$||
-|{split}|Not supported|[Issue #1345](https://github.com/KaTeX/KaTeX/issues/1345)|
-|\sqcap|$\sqcap$||
-|\sqcup|$\sqcup$||
-|\square|$\square$||
-|\sqrt|$\sqrt[3]{x}$|`\sqrt[3]{x}`|
-|\sqsubset|$\sqsubset$||
-|\sqsubseteq|$\sqsubseteq$||
-|\sqsupset|$\sqsupset$||
-|\sqsupseteq|$\sqsupseteq$||
-|\ss|$\text{\ss}$|`\text{\ss}`|
-|\stackrel|$\stackrel{!}{=}$|`\stackrel{!}{=}`|
-|\star|$\star$||
-|\Stigma|Not supported||
-|\stigma|Not supported||
-|\strut|Not supported||
-|\style|Not supported|Non standard|
-|\sub|$\sub$||
-|{subarray}|Not supported||
-|\sube|$\sube$||
-|\Subset|$\Subset$||
-|\subset|$\subset$||
-|\subseteq|$\subseteq$||
-|\subseteqq|$\subseteqq$||
-|\subsetneq|$\subsetneq$||
-|\subsetneqq|$\subsetneqq$||
-|\substack|Not supported||
-|\succ|$\succ$||
-|\succapprox|$\succapprox$||
-|\succcurlyeq|$\succcurlyeq$||
-|\succeq|$\succeq$||
-|\succnapprox|$\succnapprox$||
-|\succneqq|$\succneqq$||
-|\succnsim|$\succnsim$||
-|\succsim|$\succsim$||
-|\sum|$\sum$||
-|\sup|$\sup$||
-|\supe|$\supe$||
-|\Supset|$\Supset$||
-|\supset|$\supset$||
-|\supseteq|$\supseteq$||
-|\supseteqq|$\supseteqq$||
-|\supsetneq|$\supsetneq$||
-|\supsetneqq|$\supsetneqq$||
-|\surd|$\surd$||
-|\swarrow|$\swarrow$||
-
-## T
-
-|Symbol/Function | Rendered | Source or Comment|
-|:---------------|:------------|:-----------------|
-|\tag|$$\tag{3.1c} a^2+b^2=c^2$$|`\tag{3.1c} a^2+b^2=c^2`|
-|\tag*|$$\tag*{3.1c} a^2+b^2=c^2$$|`\tag*{3.1c} a^2+b^2=c^2`|
-|\tan|$\tan$||
-|\tanh|$\tanh$||
-|\Tau|$\Tau$||
-|\tau|$\tau$||
-|\tbinom|$\tbinom n k$|`\tbinom n k`|
-|\TeX|$\TeX$||
-|\text|$\text{ yes }\&\text{ no }$|`\text{ yes }\&\text{ no }`|
-|\textasciitilde|$\text{\textasciitilde}$|`\text{\textasciitilde}`|
-|\textasciicircum|$\text{\textasciicircum}$|`\text{\textasciicircum}`|
-|\textbackslash|$\text{\textbackslash}$|`\text{\textbackslash}`|
-|\textbar|$\text{\textbar}$|`\text{\textbar}`|
-|\textbardbl|$\text{\textbardbl}$|`\text{\textbardbl}`|
-|\textbf|$\textbf{AaBb123}$|`\textbf{AaBb123}`|
-|\textbraceleft|$\text{\textbraceleft}$|`\text{\textbraceleft}`|
-|\textbraceright|$\text{\textbraceright}$|`\text{\textbraceright}`|
-|\textcircled|$\text{\textcircled a}$|`\text{\textcircled a}`|
-|\textcolor|$\textcolor{blue}{F=ma}$|`\textcolor{blue}{F=ma}`|
-|\textdagger|$\text{\textdagger}$|`\text{\textdagger}`|
-|\textdaggerdbl|$\text{\textdaggerdbl}$|`\text{\textdaggerdbl}`|
-|\textdegree|$\text{\textdegree}$|`\text{\textdegree}`|
-|\textdollar|$\text{\textdollar}$|`\text{\textdollar}`|
-|\textellipsis|$\text{\textellipsis}$|`\text{\textellipsis}`|
-|\textemdash|$\text{\textemdash}$|`\text{\textemdash}`|
-|\textendash|$\text{\textendash}$|`\text{\textendash}`|
-|\textgreater|$\text{\textgreater}$|`\text{\textgreater}`|
-|\textit|$\textit{AaBb}$|`\textit{AaBb}`|
-|\textless|$\text{\textless}$|`\text{\textless}`|
-|\textmd|$\textmd{AaBb123}$|`\textmd{AaBb123}`|
-|\textnormal|$\textnormal{AB}$|`\textnormal{AB}`|
-|\textquotedblleft|$\text{\textquotedblleft}$|`\text{\textquotedblleft}`|
-|\textquotedblright|$\text{\textquotedblright}$|`\text{\textquotedblright}`|
-|\textquoteleft|$\text{\textquoteleft}$|`\text{\textquoteleft}`|
-|\textquoteright|$\text{\textquoteright}$|`\text{\textquoteright}`|
-|\textregistered|$\text{\textregistered}$|`\text{\textregistered}`|
-|\textrm|$\textrm{AaBb123}$|`\textrm{AaBb123}`|
-|\textsc|Not supported|[Issue #471](https://github.com/KaTeX/KaTeX/issues/471)|
-|\textsf|$\textsf{AaBb123}$|`\textsf{AaBb123}`|
-|\textsl|Not supported||
-|\textsterling|$\text{\textsterling}$|`\text{\textsterling}`|
-|\textstyle|$\textstyle\sum_0^n$|`\textstyle\sum_0^n`|
-|\texttip|Not supported||
-|\texttt|$\texttt{AaBb123}$|`\texttt{AaBb123}`|
-|\textunderscore|$\text{\textunderscore}$|`\text{\textunderscore}`|
-|\textup|$\textup{AaBb123}$|`\textup{AaBb123}`|
-|\textvisiblespace|Not supported||
-|\tfrac|$\tfrac ab$|`\tfrac ab`|
-|\tg|$\tg$||
-|\th|$\th$||
-|\therefore|$\therefore$||
-|\Theta|$\Theta$||
-|\theta|$\theta$||
-|\thetasym|$\thetasym$||
-|\thickapprox|$\thickapprox$||
-|\thicksim|$\thicksim$||
-|\thickspace|$a\thickspace b$|`a\thickspace b`|
-|\thinspace|$a\thinspace b$|`a\thinspace b`|
-|\tilde|$\tilde M$|`\tilde M`|
-|\times|$\times$||
-|\Tiny|Not supported|see `\tiny`|
-|\tiny|$\tiny tiny$|`\tiny tiny`|
-|\to|$\to$||
-|\toggle|Not supported||
-|\top|$\top$||
-|\triangle|$\triangle$||
-|\triangledown|$\triangledown$||
-|\triangleleft|$\triangleleft$||
-|\trianglelefteq|$\trianglelefteq$||
-|\triangleq|$\triangleq$||
-|\triangleright|$\triangleright$||
-|\trianglerighteq|$\trianglerighteq$||
-|\tt|${\tt AaBb123}$|`{\tt AaBb123}`|
-|\twoheadleftarrow|$\twoheadleftarrow$||
-|\twoheadrightarrow|$\twoheadrightarrow$||
-
-## U
-
-|Symbol/Function | Rendered | Source or Comment|
-|:---------------|:------------|:-----------------|
-|\u|$\text{\u{a}}$|`\text{\u{a}}`|
-|\Uarr|$\Uarr$||
-|\uArr|$\uArr$||
-|\uarr|$\uarr$||
-|\ulcorner|$\ulcorner$||
-|\underbrace|$\underbrace{x+⋯+x}_{n\text{ times}}$|`\underbrace{x+⋯+x}_{n\text{ times}}`|
-|\underbracket|Not supported||
-|\undergroup|$\undergroup{AB}$|`\undergroup{AB}`|
-|\underleftarrow|$\underleftarrow{AB}$|`\underleftarrow{AB}`|
-|\underleftrightarrow|$\underleftrightarrow{AB}$|`\underleftrightarrow{AB}`|
-|\underrightarrow|$\underrightarrow{AB}$|`\underrightarrow{AB}`|
-|\underline|$\underline{\text{a long argument}}$|`\underline{\text{a long argument}}`|
-|\underlinesegment|$\underlinesegment{AB}$|`\underlinesegment{AB}`|
-|\underparen|Not supported|See `\undergroup`|
-|\underrightarrow|$\underrightarrow{AB}$|`\underrightarrow{AB}`|
-|\underset|$\underset{!}{=}$|`\underset{!}{=}`|
-|\unicode|Not supported||
-|\unlhd|$\unlhd$||
-|\unrhd|$\unrhd$||
-|\up|Not supported||
-|\Uparrow|$\Uparrow$||
-|\uparrow|$\uparrow$||
-|\Updownarrow|$\Updownarrow$||
-|\updownarrow|$\updownarrow$||
-|\upharpoonleft|$\upharpoonleft$||
-|\upharpoonright|$\upharpoonright$||
-|\uplus|$\uplus$||
-|\uproot|Not supported||
-|\upshape|Not supported||
-|\Upsilon|$\Upsilon$||
-|\upsilon|$\upsilon$||
-|\upuparrows|$\upuparrows$||
-|\urcorner|$\urcorner$||
-|\url|$\footnotesize\url{https://katex.org/}$|`\url{https://katex.org/}`|
-|\utilde|$\utilde{AB}$|`\utilde{AB}`|
-
-## V
-
-|Symbol/Function | Rendered | Source or Comment|
-|:---------------|:------------|:-----------------|
-|\v|$\text{\v{a}}$|`\text{\v{a}}`|
-|\varcoppa|Not supported||
-|\varDelta|$\varDelta$||
-|\varepsilon|$\varepsilon$||
-|\varGamma|$\varGamma$||
-|\varinjlim|Not supported||
-|\varkappa|$\varkappa$||
-|\varLambda|$\varLambda$||
-|\varliminf|Not supported||
-|\varlimsup|Not supported||
-|\varnothing|$\varnothing$||
-|\varOmega|$\varOmega$||
-|\varPhi|$\varPhi$||
-|\varphi|$\varphi$||
-|\varPi|$\varPi$||
-|\varpi|$\varpi$||
-|\varprojlim|Not supported||
-|\varpropto|$\varpropto$||
-|\varPsi|$\varPsi$||
-|\varPsi|$\varPsi$||
-|\varrho|$\varrho$||
-|\varSigma|$\varSigma$||
-|\varsigma|$\varsigma$||
-|\varstigma|Not supported||
-|\varsubsetneq|$\varsubsetneq$||
-|\varsubsetneqq|$\varsubsetneqq$||
-|\varsupsetneq|$\varsupsetneq$||
-|\varsupsetneqq|$\varsupsetneqq$||
-|\varTheta|$\varTheta$||
-|\vartheta|$\vartheta$||
-|\vartriangle|$\vartriangle$||
-|\vartriangleleft|$\vartriangleleft$||
-|\vartriangleright|$\vartriangleright$||
-|\varUpsilon|$\varUpsilon$||
-|\varXi|$\varXi$||
-|\vcentcolon|$\vcentcolon$||
-|\vcenter|Not supported||
-|\Vdash|$\Vdash$||
-|\vDash|$\vDash$||
-|\vdash|$\vdash$||
-|\vdots|$\vdots$||
-|\vec|$\vec{F}$|`\vec{F}`|
-|\vee|$\vee$||
-|\veebar|$\veebar$||
-|\verb|$\verb!\frac a b!$|`\verb!\frac a b!`|
-|\Vert|$\Vert$||
-|\vert|$\vert$||
-|\vfil|Not supported||
-|\vfill|Not supported||
-|\vline|Not supported|[Issue #269](https://github.com/KaTeX/KaTeX/issues/269)|
-|{Vmatrix}|$\begin{Vmatrix}a&b\\c&d\end{Vmatrix}$|`\begin{Vmatrix}` `a & b \\` `c & d` `\end{Vmatrix}`|
-|{vmatrix}|$\begin{vmatrix}a&b\\c&d\end{vmatrix}$|`\begin{vmatrix}` `a & b \\` `c & d` `\end{vmatrix}`|
-|\vphantom|$\overline{\vphantom{M}a}$|`\overline{\vphantom{M}a}`|
-|\Vvdash|$\Vvdash$||
-
-## W
-
-|Symbol/Function | Rendered | Source or Comment|
-|:---------------|:------------|:-----------------|
-|\wedge|$\wedge$||
-|\weierp|$\weierp$||
-|\widecheck|$\widecheck{AB}$|`\widecheck{AB}`|
-|\widehat|$\widehat{AB}$|`\widehat{AB}`|
-|\wideparen|Not supported|[Issue #560](https://github.com/KaTeX/KaTeX/issues/560)|
-|\widetilde|$\widetilde{AB}$|`\widetilde{AB}`|
-|\wp|$\wp$||
-|\wr|$\wr$||
-
-## X
-
-|Symbol/Function | Rendered | Source or Comment|
-|:---------------|:------------|:-----------------|
-|\xcancel|$\xcancel{ABC}$|`\xcancel{ABC}`|
-|\Xi|$\Xi$||
-|\xi|$\xi$||
-|\xhookleftarrow|$\xhookleftarrow{abc}$|`\xhookleftarrow{abc}`|
-|\xhookrightarrow|$\xhookrightarrow{abc}$|`\xhookrightarrow{abc}`|
-|\xLeftarrow|$\xLeftarrow{abc}$|`\xLeftarrow{abc}`|
-|\xleftarrow|$\xleftarrow{abc}$|`\xleftarrow{abc}`|
-|\xleftharpoondown|$\xleftharpoondown{abc}$|`\xleftharpoondown{abc}`|
-|\xleftharpoonup|$\xleftharpoonup{abc}$|`\xleftharpoonup{abc}`|
-|\xLeftrightarrow|$\xLeftrightarrow{abc}$|`\xLeftrightarrow{abc}`|
-|\xleftrightarrow|$\xleftrightarrow{abc}$|`\xleftrightarrow{abc}`|
-|\xleftrightharpoons|$\xleftrightharpoons{abc}$|`\xleftrightharpoons{abc}`|
-|\xlongequal|$\xlongequal{abc}$|`\xlongequal{abc}`|
-|\xmapsto|$\xmapsto{abc}$|`\xmapsto{abc}`|
-|\xRightarrow|$\xRightarrow{abc}$|`\xRightarrow{abc}`|
-|\xrightarrow|$\xrightarrow{abc}$|`\xrightarrow{abc}`|
-|\xrightharpoondown|$\xrightharpoondown{abc}$|`\xrightharpoondown{abc}`|
-|\xrightharpoonup|$\xrightharpoonup{abc}$|`\xrightharpoonup{abc}`|
-|\xrightleftharpoons|$\xrightleftharpoons{abc}$|`\xrightleftharpoons{abc}`|
-|\xtofrom|$\xtofrom{abc}$|`\xtofrom{abc}`|
-|\xtwoheadleftarrow|$\xtwoheadleftarrow{abc}$|`\xtwoheadleftarrow{abc}`|
-|\xtwoheadrightarrow|$\xtwoheadrightarrow{abc}$|`\xtwoheadrightarrow{abc}`|
-
-## YZ
-
-|Symbol/Function | Rendered | Source or Comment|
-|:---------------|:------------|:-----------------|
-|\yen|$\yen$||
-|\Z|$\Z$||
-|\Zeta|$\Zeta$||
-|\zeta|$\zeta$||
diff --git a/website/versioned_docs/version-0.10.2/supported.md b/website/versioned_docs/version-0.10.2/supported.md
deleted file mode 100644
index 0fbd3eef..00000000
--- a/website/versioned_docs/version-0.10.2/supported.md
+++ /dev/null
@@ -1,641 +0,0 @@
----
-id: version-0.10.2-supported
-title: Supported Functions
-original_id: supported
----
-This is a list of TeX functions supported by KaTeX. It is sorted into logical groups.
-
-There is a similar [Support Table](support_table.md), sorted alphabetically, that lists both supported and un-supported functions.
-
-
-
-
-
-
-|||||
-|:---------------------|:---------------------|:---------------------|:--------
-|$\begin{matrix} a & b \\ c & d \end{matrix}$ | `\begin{matrix}` `a & b \\` `c & d` `\end{matrix}` |$\begin{array}{cc}a & b\\c & d\end{array}$ | `\begin{array}{cc}` `a & b \\` `c & d` `\end{array}`
-|$\begin{pmatrix} a & b \\ c & d \end{pmatrix}$ |`\begin{pmatrix}` `a & b \\` `c & d` `\end{pmatrix}` |$\begin{bmatrix} a & b \\ c & d \end{bmatrix}$ | `\begin{bmatrix}` `a & b \\` `c & d` `\end{bmatrix}`
-|$\begin{vmatrix} a & b \\ c & d \end{vmatrix}$ |`\begin{vmatrix}` `a & b \\` `c & d` `\end{vmatrix}` |$\begin{Vmatrix} a & b \\ c & d \end{Vmatrix}$ |`\begin{Vmatrix}` `a & b \\` `c & d` `\end{Vmatrix}`
-|$\begin{Bmatrix} a & b \\ c & d \end{Bmatrix}$ |`\begin{Bmatrix}` `a & b \\` `c & d` `\end{Bmatrix}`|$\def\arraystretch{1.5}\begin{array}{c:c:c} a & b & c \\ \hline d & e & f \\ \hdashline g & h & i \end{array}$|`\def\arraystretch{1.5}` `\begin{array}{c:c:c}` `a & b & c \\ \hline` `d & e & f \\` `\hdashline` `g & h & i` `\end{array}`
-|$\begin{aligned} a&=b+c \\ d+e&=f \end{aligned}$ |`\begin{aligned}` `a&=b+c \\` `d+e&=f` `\end{aligned}`|$\begin{alignedat}{2}10&x+&3&y=2\\3&x+&13&y=4\end{alignedat}$ |`\begin{alignedat}{2}` `10&x+ &3&y = 2 \\` ` 3&x+&13&y = 4` `\end{alignedat}`
-|$\begin{gathered} a=b \\ e=b+c \end{gathered}$ |`\begin{gathered}` `a=b \\ ` `e=b+c` `\end{gathered}`|$x = \begin{cases} a &\text{if } b \\ c &\text{if } d \end{cases}$ |`x = \begin{cases}` `a &\text{if } b \\` `c &\text{if } d` `\end{cases}`
-
-
-
-KaTeX also supports `darray` and `dcases`.
-
-Acceptable line separators include: `\\`, `\cr`, `\\[distance]`, and `\cr[distance]`. *Distance* can be written with any of the [KaTeX units](#units).
-
-The `{array}` environment supports `|` and `:` vertical separators.
-
-The `{array}` environment does not yet support `\cline` or `\multicolumn`.
-
-
-
-**Unicode**
-
-The letters listed above will render in any KaTeX rendering mode.
-
-If the KaTeX rendering mode is set to `strict: false` or `strict:"warn"` (default), then KaTeX will accept all Unicode letters. The letters not listed above will be rendered from system fonts, not KaTeX-supplied fonts, so their typography may clash. They may also cause small vertical alignment issues. KaTeX has detailed metrics for glyphs in Latin, Greek, and Cyrillic, but other glyphs are treated as if they are each as tall as the letter M.
-
-For Persian composite characters, a user-supplied [plug-in](https://github.com/HosseinAgha/persian-katex-plugin) is under development.
-
-## Layout
-
-### Annotation
-
-|||
-|:------------------------------|:-----
-|$\cancel{5}$ `\cancel{5}`|$\overbrace{a+b+c}^{\text{note}}$ `\overbrace{a+b+c}^{\text{note}}`
-|$\bcancel{5}$ `\bcancel{5}` |$\underbrace{a+b+c}_{\text{note}}$ `\underbrace{a+b+c}_{\text{note}}`
-|$\xcancel{ABC}$ `\xcancel{ABC}`|$\not =$ `\not =`
-|$\sout{abc}$ `\sout{abc}`|$\boxed{\pi=\frac c d}$ `\boxed{\pi=\frac c d}`
-
-`\tag{hi} x+y^{2x}`
-$$\tag{hi} x+y^{2x}$$
-
-`\tag*{hi} x+y^{2x}`
-$$\tag*{hi} x+y^{2x}$$
-
-### Line Breaks
-
-KaTeX 0.10.0+ will insert automatic line breaks in inline math after relations or binary operators such as “=” or “+”. These can be suppressed by `\nobreak` or by placing math inside a pair of braces, as in `{F=ma}`. `\allowbreak` will allow automatic line breaks at locations other than relations or operators.
-
-Hard line breaks are `\\` and `\newline`.
-
-In display math, KaTeX does not insert automatic line breaks. It ignores display math hard line breaks when rendering option `strict: true`.
-
-### Vertical Layout
-
-||||
-|:--------------|:----------------------------------------|:-----
-|$x_n$ `x_n` |$\stackrel{!}{=}$ `\stackrel{!}{=}` |$a \atop b$ `a \atop b`
-|$e^x$ `e^x` |$\overset{!}{=}$ `\overset{!}{=}` |$a\raisebox{0.25em}{b}c$ `a\raisebox{0.25em}{b}c`
-|$_u^o $ `_u^o `|$\underset{!}{=}$ `\underset{!}{=}`
-
-The second argument of `\raisebox` can contain math if it is nested within `$…$` delimiters, as in `\raisebox{0.25em}{$\frac a b$}`
-
-### Overlap and Spacing
-
-|||
-|:-------|:-------|
-|${=}\mathllap{/\,}$ `{=}\mathllap{/\,}` | $\left(x^{\smash{2}}\right)$ `\left(x^{\smash{2}}\right)`
-|$\mathrlap{\,/}{=}$ `\mathrlap{\,/}{=}` | $\sqrt{\smash[b]{y}}$ `\sqrt{\smash[b]{y}} `
-
-$\displaystyle\sum_{\mathclap{1\le i\le j\le n}} x_{ij}$ `\sum_{\mathclap{1\le i\le j\le n}} x_{ij}`
-
-KaTeX also supports `\llap`, `\rlap`, and `\clap`, but they will take only text, not math, as arguments.
-
-
-
-
-**Spacing**
-
-| Function | Produces | Function | Produces|
-|:----------------|:-------------------|:---------------------|:--------------------------------------|
-| `\,` | ³∕₁₈ em space | `\kern{distance}` | space, width = *distance*
-| `\thinspace` | ³∕₁₈ em space | `\mkern{distance}` | space, width = *distance*
-| `\>` | ⁴∕₁₈ em space | `\mskip{distance}` | space, width = *distance*
-| `\:` | ⁴∕₁₈ em space | `\hskip{distance}` | space, width = *distance*
-| `\medspace` | ⁴∕₁₈ em space | `\hspace{distance}` | space, width = *distance*
-| `\;` | ⁵∕₁₈ em space | `\hspace*{distance}` | space, width = *distance*
-| `\thickspace` | ⁵∕₁₈ em space | `\phantom{content}` | space the width and height of content
-| `\enspace` | ½ em space | `\hphantom{content}` | space the width of content
-| `\quad` | 1 em space | `\vphantom{content}` | a strut the height of content
-| `\qquad` | 2 em space | `\!` | – ³∕₁₈ em space
-| `~` | non-breaking space | `\negthinspace` | – ³∕₁₈ em space
-| `\` | space | `\negmedspace` | – ⁴∕₁₈ em space
-| `\nobreakspace` | non-breaking space | `\negthickspace` | – ⁵∕₁₈ em space
-| `\space` | space |
-
-
-
-**Notes:**
-
-`distance` will accept any of the [KaTeX units](#units).
-
-`\kern`, `\mkern`, `\mskip`, and `\hspace` accept unbraced distances, as in: `\kern1em`.
-
-`\mkern` and `\mskip` will not work in text mode and both will write a console warning for any unit except `mu`.
-
-
-
-| KaTeX Unit | Value | KaTeX Unit | Value |
-|:---|:---------------------|:---|:----------------|
-| em | CSS em | bp | 1/72 inch × F × G|
-| ex | CSS ex | pc | 12 KaTeX pt|
-| mu | 1/18 CSS em | dd | 1238/1157 KaTeX pt |
-| pt | 1/72.27 inch × F × G | cc | 14856/1157 KaTeX pt |
-| mm | 1 mm × F × G | nd | 685/642 KaTeX pt |
-| cm | 1 cm × F × G | nc | 1370/107 KaTeX pt|
-| in | 1 inch × F × G | sp | 1/65536 KaTeX pt |
-
-
-
-where:
-
-
-
-F = (font size of surrounding HTML text)/(10 pt)
-
-G = 1.21 by default, because KaTeX font-size is normally 1.21 × the surrounding font size. This value [can be overridden](font.md#font-size-and-lengths) by the CSS of an HTML page.
-
-
-
-The effect of style and size:
-
-
-
-| Unit | textstyle | scriptscript | huge |
-|:------:|:-----------------:|:------------:|:------:|
-|em or ex|$\rule{1em}{1em}$ |$\scriptscriptstyle\rule{1em}{1em}$ |$\huge\rule{1em}{1em}$
-| mu |$\rule{18mu}{18mu}$|$\scriptscriptstyle\rule{18mu}{18mu}$|$\huge\rule{18mu}{18mu}$
-| others |$\rule{10pt}{10pt}$|$\scriptscriptstyle\rule{10pt}{10pt}$|$\huge\rule{10pt}{10pt}$
-
-
diff --git a/website/versioned_docs/version-0.11.0/autorender.md b/website/versioned_docs/version-0.11.0/autorender.md
deleted file mode 100644
index 16cabd75..00000000
--- a/website/versioned_docs/version-0.11.0/autorender.md
+++ /dev/null
@@ -1,111 +0,0 @@
----
-id: version-0.11.0-autorender
-title: Auto-render Extension
-original_id: autorender
----
-This is an extension to automatically render all of the math inside of text. It
-searches all of the text nodes within a given element for the given delimiters,
-ignoring certain tags like `
`, and renders the math in place.
-
-## Usage
-This extension isn't part of KaTeX proper, so the script needs to be included
-(via a `
-
-```
-
-> Above, the [`defer` attribute](https://developer.mozilla.org/en/HTML/Element/script#Attributes)
-indicates that the script doesn't need to execute until the page has loaded,
-speeding up page rendering; and the `onload` attribute calls
-`renderMathInElement` once the auto-render script loads.
-
-Alternatively, you can call the `renderMathInElement` when (or after) the
-[`DOMContentLoaded` event](https://developer.mozilla.org/ko/docs/Web/Reference/Events/DOMContentLoaded)
-fires on the document or in another deferred script.
-This approach is useful for specifying or computing options, or if you don't
-want to use a `defer` or `onload` attribute.
-For example:
-
-```html
-
-
-
-
-```
-
-ECMAScript module is also available:
-```html
-
-
-```
-
-> You can use [`nomodule` attribute](https://developer.mozilla.org/en/HTML/Element/script#Attributes)
-to provide a fallback for older browsers that do not support ES modules. -->
-
-## API
-This extension exposes a single function, `window.renderMathInElement`, with
-the following API:
-
-```js
-function renderMathInElement(elem, options)
-```
-
-`elem` is an HTML DOM element. The function will recursively search for text
-nodes inside this element and render the math in them.
-
-`options` is an optional object argument that can have the same keys as [the
-object passed to `katex.render`](https://github.com/KaTeX/KaTeX/#rendering-options),
-in addition to several auto-render-specific keys:
-
-- `delimiters`: This is a list of delimiters to look for math. Each delimiter
- has three properties:
-
- - `left`: A string which starts the math expression (i.e. the left delimiter).
- - `right`: A string which ends the math expression (i.e. the right delimiter).
- - `display`: A boolean of whether the math in the expression should be
- rendered in display mode or not.
-
- The default value is:
-
- ```js
- [
- {left: "$$", right: "$$", display: true},
- {left: "\\(", right: "\\)", display: false},
- {left: "\\[", right: "\\]", display: true}
- ]
- ```
-
-- `ignoredTags`: This is a list of DOM node types to ignore when recursing
- through. The default value is
- `["script", "noscript", "style", "textarea", "pre", "code"]`.
-
-- `ignoredClasses`: This is a list of DOM node class names to ignore when
- recursing through. By default, this value is not set.
-
-- `errorCallback`: A callback method returning a message and an error stack
- in case of an critical error during rendering. The default uses `console.error`.
-
-- `preProcess`: A callback function, `(math: string) => string`, used to process
- math expressions before rendering.
-
-The `displayMode` property of the options object is ignored, and is
-instead taken from the `display` key of the corresponding entry in the
-`delimiters` key.
-
-The same `options.macros` object (which defaults to an empty object `{}`)
-is passed into several calls to `katex.render`, so that consecutive equations
-can build up shared macros by `\gdef`.
diff --git a/website/versioned_docs/version-0.11.0/browser.md b/website/versioned_docs/version-0.11.0/browser.md
deleted file mode 100644
index 138be221..00000000
--- a/website/versioned_docs/version-0.11.0/browser.md
+++ /dev/null
@@ -1,119 +0,0 @@
----
-id: version-0.11.0-browser
-title: Browser
-original_id: browser
----
-> KaTeX supports all major browsers, including Chrome, Safari, Firefox, Opera, Edge, and IE 9–11.
-
-## Starter template
-
-```html
-
-
-
-
-
-
-
-
-
-
-
-
- ...
-
-```
-
-## Loading as Global
-If you include the `katex.js` directly, the `katex` object will be available as
-a global variable.
-
-```html
-
-
-```
-
-KaTeX also provides minified versions:
-
-```html
-
-
-```
-
-The examples above load the script [deferred using the `defer` attribute](https://developer.mozilla.org/en/HTML/Element/script#Attributes)
-to speed up page rendering. The `katex` object will be available after
-[`DOMContentLoaded` event is fired on the `document`](https://developer.mozilla.org/ko/docs/Web/Reference/Events/DOMContentLoaded).
-If you do not use `defer`, `katex` object will be available after the corresponding
-`script` tag.
-
-If KaTeX is not used immediately or not critical, it is possible to load KaTeX
-asynchronously. Add [`async` attribute](https://developer.mozilla.org/en/HTML/Element/script#Attributes)
-to `script` and use [`rel="preload"` and `onload` attribute](https://github.com/filamentgroup/loadCSS)
-on `link`.
-
-You can prefetch KaTeX fonts to prevent FOUT or FOIT. Use [Font Loading API](https://developer.mozilla.org/en-US/docs/Web/API/CSS_Font_Loading_API)
-or [Web Font Loader](https://github.com/typekit/webfontloader):
-
-```html
-
-
-```
-
-You can also use [`rel="preload"`](https://developer.mozilla.org/en-US/docs/Web/HTML/Preloading_content).
-Add ``
-to `head`. Note that [only few browsers support it](https://caniuse.com/#feat=link-rel-preload)
-and they all support WOFF2 so preloading WOFF2 fonts is enough.
-
-See [Google Web Fundamentals - Web Font Optimization](https://developers.google.com/web/fundamentals/performance/optimizing-content-efficiency/webfont-optimization)
-for more detail.
-
-## Module Loaders
-### AMD
-```html
-
-
-```
-
-### ECMAScript module
-```html
-
-
-
-```
-
-> Use [`nomodule` attribute](https://developer.mozilla.org/en/HTML/Element/script#Attributes)
-to provide a fallback for older browsers that do not support ES modules.
-
-## Download & Host Things Yourself
-Download a [KaTeX release](https://github.com/KaTeX/KaTeX/releases),
-copy `katex.js`, `katex.css`
-(or `katex.min.js` and `katex.min.css` to use minified versions),
-and the `fonts` directory, and include or import it like above.
-
-You can also build from source. See [Building from Source](node.md#building-from-source)
-for more details.
-
-## Bundler
-[Use Node.js package managers to install KaTeX and import it](node.md) in your
-project. Then bundle using bundlers like [webpack](https://webpack.js.org/) or
-[rollup.js](https://rollupjs.org/). Note that you have to bundle the stylesheet
-(`katex.css`) or include it manually.
diff --git a/website/versioned_docs/version-0.11.0/font.md b/website/versioned_docs/version-0.11.0/font.md
deleted file mode 100644
index a0566f7c..00000000
--- a/website/versioned_docs/version-0.11.0/font.md
+++ /dev/null
@@ -1,47 +0,0 @@
----
-id: version-0.11.0-font
-title: Font
-original_id: font
----
-By changing the variables in the `fonts.less` file at the [katex-fonts submodule](https://github.com/KaTeX/katex-fonts/),
-several properties of the way fonts are used can be changed.
-
-## Font size and lengths
-By default, KaTeX math is rendered in a 1.21× larger font than the surrounding
-context, which makes super- and subscripts easier to read. You can control
-this using CSS, for example, to set to 1.1×:
-
-```css
-.katex { font-size: 1.1em; }
-```
-
-KaTeX supports all TeX units, including absolute units like `cm` and `in`.
-Absolute units are currently scaled relative to the default TeX font size of
-10pt, so that `\kern1cm` produces the same results as `\kern2.845275em`.
-As a result, relative and absolute units are both uniformly scaled relative
-to LaTeX with a 10pt font; for example, the rectangle `\rule{1cm}{1em}` has
-the same aspect ratio in KaTeX as in LaTeX. However, because most browsers
-default to a larger font size, this typically means that a 1cm kern in KaTeX
-will appear larger than 1cm in browser units.
-
-## Kinds of fonts used
-
-KaTeX provides fonts in three different formats: `ttf`, `woff`, and `woff2`.
-
-- `ttf`s are included to support very old browsers and local installation. [Browser support](https://caniuse.com/#feat=ttf)
-- `woff` is the format that is most widely supported (all modern browsers support it), so it probably provides the most benefit to being included. [Browser support](https://caniuse.com/#feat=woff)
-- `woff2`s are included for modern browsers, because they are much smaller and faster to load. [Browser support](https://caniuse.com/#feat=woff2)
-
-KaTeX will automatically include only necessary fonts for target environments
-specified by [Browserslist config](https://github.com/browserslist/browserslist#queries).
-
-To force a font type to be included or excluded, set `USE_(FONT NAME)` environment
-variable to `"true"` or `"false"`, respectively.`
-
-## Location of font files
-
-The default build of KaTeX expects the KaTeX fonts to be located in a directory called `fonts` which is a sibling of the `katex.min.css` stylesheet. This can be changed as follows:
-
-1. At the top of the [fonts.less](https://github.com/KaTeX/katex-fonts/blob/master/fonts.less) file, set `@font-folder` to the location of your fonts. You can use relative or absolute paths, so setting it to `"/fonts"` would cause it to search for the fonts in a root `fonts` folder, while `"../fonts"` would search in a `fonts` directory one level above the `katex.min.css` file.
-2. Rebuild KaTeX by running `yarn build` from the top-level directory.
-3. Use the newly generated `dist/katex.min.css` file, and place the fonts where you indicated.
diff --git a/website/versioned_docs/version-0.11.0/issues.md b/website/versioned_docs/version-0.11.0/issues.md
deleted file mode 100644
index cc52bd9a..00000000
--- a/website/versioned_docs/version-0.11.0/issues.md
+++ /dev/null
@@ -1,47 +0,0 @@
----
-id: version-0.11.0-issues
-title: Common Issues
-original_id: issues
----
-- Be sure to include `` at the top of your HTML file, as
- otherwise your browser will render in "[quirks mode](https://developer.mozilla.org/en-US/docs/Web/HTML/Quirks_Mode_and_Standards_Mode)"
- which can cause KaTeX to sometimes render incorrectly.
- This header is needed even inside `