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
- Host: GitHub
- URL: https://github.com/koehlma/vscode-markdown-math
- Owner: koehlma
- Created: 2017-08-23T14:46:16.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-08-23T17:16:11.000Z (almost 8 years ago)
- Last Synced: 2025-02-28T19:43:27.170Z (3 months ago)
- Language: TypeScript
- Homepage:
- Size: 7.81 KB
- Stars: 10
- Watchers: 2
- Forks: 4
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
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
$$
```