An open API service indexing awesome lists of open source software.

https://github.com/koehlma/vscode-markdown-math

adds math support to VS Code's built-in markdown preview
https://github.com/koehlma/vscode-markdown-math

Last synced: 3 months ago
JSON representation

adds math support to VS Code's built-in markdown preview

Awesome Lists containing this project

README

        

# Markdown Math
Adds math support to VS Code's built-in markdown preview using KaTeX.

## Features
This extension supports inline math using the `$` delimiter and block math using the `$$` delimiter.

```markdown
$a + b = c$
```

```markdown
$$
f(x) = \int_{-\infty}^\infty \hat f(\xi)\,e^{2 \pi \xi x} \,d\xi
$$
```