This is a mirror of https://github.com/Khan/KaTeX and for own development.
ylemkimon ce3840d4ce Include only necessary fonts for target environment specified by Browserslist (#1674) | 6 роки тому | |
---|---|---|
.circleci | 6 роки тому | |
contrib | 6 роки тому | |
dockers | 6 роки тому | |
docs | 6 роки тому | |
src | 6 роки тому | |
static | 6 роки тому | |
submodules | 6 роки тому | |
test | 6 роки тому | |
website | 6 роки тому | |
.browserslistrc | 6 роки тому | |
.codecov.yml | 6 роки тому | |
.eslintignore | 6 роки тому | |
.eslintrc | 6 роки тому | |
.flowconfig | 6 роки тому | |
.gitattributes | 7 роки тому | |
.gitignore | 6 роки тому | |
.gitmodules | 6 роки тому | |
.stylelintrc | 6 роки тому | |
CHANGELOG.md | 6 роки тому | |
CODE_OF_CONDUCT.md | 8 роки тому | |
CONTRIBUTING.md | 6 роки тому | |
LICENSE | 6 роки тому | |
README.md | 6 роки тому | |
babel.config.js | 6 роки тому | |
bower.json | 6 роки тому | |
cli.js | 6 роки тому | |
greenkeeper.json | 6 роки тому | |
katex.js | 6 роки тому | |
katex.webpack.js | 6 роки тому | |
package.json | 6 роки тому | |
release.sh | 6 роки тому | |
rollup.config.js | 6 роки тому | |
update-sri.js | 6 роки тому | |
webpack.analyze.js | 6 роки тому | |
webpack.common.js | 6 роки тому | |
webpack.config.js | 6 роки тому | |
webpack.dev.js | 6 роки тому | |
yarn.lock | 6 роки тому |
KaTeX is a fast, easy-to-use JavaScript library for TeX math rendering on the web.
KaTeX is compatible with all major browsers, including Chrome, Safari, Firefox, Opera, Edge, and IE 9–11.
KaTeX supports much (but not all) of LaTeX and many LaTeX packages. See the list of supported functions.
Try out KaTeX on the demo page!
<!DOCTYPE html>
<!-- KaTeX requires the use of the HTML5 doctype. Without it, KaTeX may not render properly -->
<html>
<head>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.10.0/dist/katex.min.css" integrity="sha384-9eLZqc9ds8eNjO3TmqPeYcDj8n+Qfa4nuSiGYa6DjLNcv9BtN69ZIulL9+8CqC9Y" crossorigin="anonymous">
<!-- The loading of KaTeX is deferred to speed up page rendering -->
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.10.0/dist/katex.min.js" integrity="sha384-K3vbOmF2BtaVai+Qk37uypf7VrgBubhQreNQe9aGsz9lB63dIFiQVlJbr92dw2Lx" crossorigin="anonymous"></script>
<!-- To automatically render math in text elements, include the auto-render extension: -->
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.10.0/dist/contrib/auto-render.min.js" integrity="sha384-kmZOZB5ObwgQnS/DuDg6TScgOiWWBiVt0plIRkZCmE6rDZGrEOQeHM5PcHi+nyqe" crossorigin="anonymous"
onload="renderMathInElement(document.body);"></script>
</head>
...
</html>
You can also download KaTeX and host it yourself.
For details on how to configure auto-render extension, refer to the documentation.
Call katex.render
to render a TeX expression directly into a DOM element.
For example:
katex.render("c = \\pm\\sqrt{a^2 + b^2}", element, {
throwOnError: false
});
Call katex.renderToString
to generate an HTML string of the rendered math,
e.g., for server-side rendering. For example:
var html = katex.renderToString("c = \\pm\\sqrt{a^2 + b^2}", {
throwOnError: false
});
// '<span class="katex">...</span>'
Make sure to include the CSS and font files in both cases. If you are doing all rendering on the server, there is no need to include the JavaScript on the client.
The examples above use the throwOnError: false
option, which renders invalid
inputs as the TeX source code in red (by default), with the error message as
hover text. For other available options, see the
API documentation,
options documentation, and
handling errors documentation.
Learn more about using KaTeX on the website!
See CONTRIBUTING.md
KaTeX is licensed under the MIT License.