2.0.3 • Published 9 years ago

markdown-it-katex v2.0.3

Weekly downloads
24,923
License
MIT
Repository
github
Last release
9 years ago

markdown-it-katex

Add Math to your Markdown

Build Status

KaTeX is a faster alternative to MathJax. This plugin makes it easy to support in your markdown.

Need convincing?

Usage

Install markdown-it

npm install markdown-it

Install the plugin

npm install markdown-it-katex

Use it in your javascript

var md = require('markdown-it')(),
    mk = require('markdown-it-katex');

md.use(mk);

// double backslash is required for javascript strings, but not html input
var result = md.render('# Math Rulez! \n  $\\sqrt{3x-1}+(1+x)^2$');

Include the KaTeX stylesheet in your html:

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.5.1/katex.min.css">

If you're using the default markdown-it parser, I also recommend the github stylesheet:

<link rel="stylesheet" href="https://cdn.jsdelivr.net/github-markdown-css/2.2.1/github-markdown.css"/>

KaTeX options can be supplied with the second argument to use.

md.use(mk, {"throwOnError" : false, "errorColor" : " #cc0000"});

Examples

Inline

Surround your LaTeX with a single $ on each side for inline rendering.

$\sqrt{3x-1}+(1+x)^2$

Block

Use two ($$) for block rendering. This mode uses bigger symbols and centers the result.

$$\begin{array}{c}

\nabla \times \vec{\mathbf{B}} -\, \frac1c\, \frac{\partial\vec{\mathbf{E}}}{\partial t} &
= \frac{4\pi}{c}\vec{\mathbf{j}}    \nabla \cdot \vec{\mathbf{E}} & = 4 \pi \rho \\

\nabla \times \vec{\mathbf{E}}\, +\, \frac1c\, \frac{\partial\vec{\mathbf{B}}}{\partial t} & = \vec{\mathbf{0}} \\

\nabla \cdot \vec{\mathbf{B}} & = 0

\end{array}$$

Syntax

Math parsing in markdown is designed to agree with the conventions set by pandoc:

Anything between two $ characters will be treated as TeX math. The opening $ must
have a non-space character immediately to its right, while the closing $ must
have a non-space character immediately to its left, and must not be followed
immediately by a digit. Thus, $20,000 and $30,000 won’t parse as math. If for some
reason you need to enclose text in literal $ characters, backslash-escape them and
they won’t be treated as math delimiters.

Math Syntax Support

KaTeX is based on TeX and LaTeX. Support for both is growing. Here's a list of currently supported functions:

Function Support in KaTeX

42-pro-markdown-nicemavon-editor-fork@tungcv/markdown-it-vue-minifydocsites@leecervan/vuepress-theme-plutomk-nicemarkdown-nice-42-pro@everything-registry/sub-chunk-2132sakurarenderervue-markdownvue-markdown-attrsvue-markdown-v3ws-image-managertest-vitepress-theme-project-transvrite-libvscode-officevite-plugin-vuedocvitepress-blog@creatorsn/powereditorjhedjk-markdown-it@halo-dev/halo-markdown-editor@chuangker/nice-mail@chatopera/markdown-it-vue42-markdown@bernankez/prototypeyhb-vue-markdownxzmdzfindervuepress-theme-idgvuepress-theme-coolvuepress-theme-dogvuepress-plugin-hyblogvuepress-plugin-pad-markdownvue2-markdown-itvue2-codemirror-markdown@huskiesio/message-renderer@live-change/frontend-base@letsnova/perfect-markdown@mathssyfy/plugin-markdown@neural-nexus/nexus-client@jiker/markdown-it@jamen/mdc@jannchie/vue-markdown@pubpub/prose@project-trans/vitepress-theme-project-trans@playpuppy/puppy-editor@penrose/components@sil/markdownmolecule-markdown-editormk-md-nicescholae-dicimusrayx-uinodebb-plugin-cppnet-markdownnbugs-chat-duminice-wechat-markdownnodeppt-parserperfect-markdownpug-html-pdfrant-uisinbloggoujila-md-editorgulp-md-to-htmlmagicbook-katexmarkdown-bundlemarkdown-it-vue-minifymarkdown-it-vue-plantuml-testmarkdown-it-vue-ssrmarkdownit-zq-loadermarkdown-it-criticmarkupmd2mlmavon-editor-testmarkdown-nicemarkdown-nice-42markdown-nice-clonemarkdown-nice-promdblogmdpress-editor@yuicer/vuepress-theme-yuicer@zalastax/nolb-markdown-i@zhuhuayu/markdown-it@zxsz/ai-chatadios-blog-cli@xuanmo/vite-plugin-vuedocagently-ui-staticai-npm-test-servicesaipe-markdownatlas-jupyter-reactaovj-frontavnpc.frontbitmuibookgchatgpt-nextcanpressdocsite-extdocsitefmarkdown
2.0.3

9 years ago

2.0.2

9 years ago

2.0.1

9 years ago

2.0.0

9 years ago

1.1.0

9 years ago

1.0.9

9 years ago

1.0.8

9 years ago

1.0.6

9 years ago

1.0.5

9 years ago

1.0.4

9 years ago

1.0.3

9 years ago

1.0.2

9 years ago

1.0.1

9 years ago

1.0.0

9 years ago