├── .eslintrc.json ├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── images ├── jupyter.png └── sample.PNG ├── jsconfig.json ├── language-configuration.json ├── package.json ├── src ├── extension.js └── notebookjs │ ├── .gitignore │ ├── .npmignore │ ├── LICENSE.txt │ ├── Makefile │ ├── README.md │ ├── bin │ └── cli-render.js │ ├── bower.json │ ├── mathjaxutils.js │ ├── mathjaxutils.min.js │ ├── notebook.js │ ├── notebook.min.js │ └── package.json ├── static ├── auto-render.min.js ├── custom.css ├── custom.js ├── fonts │ ├── KaTeX_AMS-Regular.eot │ ├── KaTeX_AMS-Regular.ttf │ ├── KaTeX_AMS-Regular.woff │ ├── KaTeX_AMS-Regular.woff2 │ ├── KaTeX_Caligraphic-Bold.eot │ ├── KaTeX_Caligraphic-Bold.ttf │ ├── KaTeX_Caligraphic-Bold.woff │ ├── KaTeX_Caligraphic-Bold.woff2 │ ├── KaTeX_Caligraphic-Regular.eot │ ├── KaTeX_Caligraphic-Regular.ttf │ ├── KaTeX_Caligraphic-Regular.woff │ ├── KaTeX_Caligraphic-Regular.woff2 │ ├── KaTeX_Fraktur-Bold.eot │ ├── KaTeX_Fraktur-Bold.ttf │ ├── KaTeX_Fraktur-Bold.woff │ ├── KaTeX_Fraktur-Bold.woff2 │ ├── KaTeX_Fraktur-Regular.eot │ ├── KaTeX_Fraktur-Regular.ttf │ ├── KaTeX_Fraktur-Regular.woff │ ├── KaTeX_Fraktur-Regular.woff2 │ ├── KaTeX_Main-Bold.eot │ ├── KaTeX_Main-Bold.ttf │ ├── KaTeX_Main-Bold.woff │ ├── KaTeX_Main-Bold.woff2 │ ├── KaTeX_Main-Italic.eot │ ├── KaTeX_Main-Italic.ttf │ ├── KaTeX_Main-Italic.woff │ ├── KaTeX_Main-Italic.woff2 │ ├── KaTeX_Main-Regular.eot │ ├── KaTeX_Main-Regular.ttf │ ├── KaTeX_Main-Regular.woff │ ├── KaTeX_Main-Regular.woff2 │ ├── KaTeX_Math-BoldItalic.eot │ ├── KaTeX_Math-BoldItalic.ttf │ ├── KaTeX_Math-BoldItalic.woff │ ├── KaTeX_Math-BoldItalic.woff2 │ ├── KaTeX_Math-Italic.eot │ ├── KaTeX_Math-Italic.ttf │ ├── KaTeX_Math-Italic.woff │ ├── KaTeX_Math-Italic.woff2 │ ├── KaTeX_Math-Regular.eot │ ├── KaTeX_Math-Regular.ttf │ ├── KaTeX_Math-Regular.woff │ ├── KaTeX_Math-Regular.woff2 │ ├── KaTeX_SansSerif-Bold.eot │ ├── KaTeX_SansSerif-Bold.ttf │ ├── KaTeX_SansSerif-Bold.woff │ ├── KaTeX_SansSerif-Bold.woff2 │ ├── KaTeX_SansSerif-Italic.eot │ ├── KaTeX_SansSerif-Italic.ttf │ ├── KaTeX_SansSerif-Italic.woff │ ├── KaTeX_SansSerif-Italic.woff2 │ ├── KaTeX_SansSerif-Regular.eot │ ├── KaTeX_SansSerif-Regular.ttf │ ├── KaTeX_SansSerif-Regular.woff │ ├── KaTeX_SansSerif-Regular.woff2 │ ├── KaTeX_Script-Regular.eot │ ├── KaTeX_Script-Regular.ttf │ ├── KaTeX_Script-Regular.woff │ ├── KaTeX_Script-Regular.woff2 │ ├── KaTeX_Size1-Regular.eot │ ├── KaTeX_Size1-Regular.ttf │ ├── KaTeX_Size1-Regular.woff │ ├── KaTeX_Size1-Regular.woff2 │ ├── KaTeX_Size2-Regular.eot │ ├── KaTeX_Size2-Regular.ttf │ ├── KaTeX_Size2-Regular.woff │ ├── KaTeX_Size2-Regular.woff2 │ ├── KaTeX_Size3-Regular.eot │ ├── KaTeX_Size3-Regular.ttf │ ├── KaTeX_Size3-Regular.woff │ ├── KaTeX_Size3-Regular.woff2 │ ├── KaTeX_Size4-Regular.eot │ ├── KaTeX_Size4-Regular.ttf │ ├── KaTeX_Size4-Regular.woff │ ├── KaTeX_Size4-Regular.woff2 │ ├── KaTeX_Typewriter-Regular.eot │ ├── KaTeX_Typewriter-Regular.ttf │ ├── KaTeX_Typewriter-Regular.woff │ └── KaTeX_Typewriter-Regular.woff2 ├── katex.min.css ├── katex.min.js ├── notebook.css ├── prism.css └── require.js ├── test ├── extension.test.js └── index.js └── vsc-extension-quickstart.md /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/README.md -------------------------------------------------------------------------------- /images/jupyter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/images/jupyter.png -------------------------------------------------------------------------------- /images/sample.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/images/sample.PNG -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/jsconfig.json -------------------------------------------------------------------------------- /language-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/language-configuration.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/package.json -------------------------------------------------------------------------------- /src/extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/src/extension.js -------------------------------------------------------------------------------- /src/notebookjs/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /src/notebookjs/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /src/notebookjs/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/src/notebookjs/LICENSE.txt -------------------------------------------------------------------------------- /src/notebookjs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/src/notebookjs/Makefile -------------------------------------------------------------------------------- /src/notebookjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/src/notebookjs/README.md -------------------------------------------------------------------------------- /src/notebookjs/bin/cli-render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/src/notebookjs/bin/cli-render.js -------------------------------------------------------------------------------- /src/notebookjs/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/src/notebookjs/bower.json -------------------------------------------------------------------------------- /src/notebookjs/mathjaxutils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/src/notebookjs/mathjaxutils.js -------------------------------------------------------------------------------- /src/notebookjs/mathjaxutils.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/src/notebookjs/mathjaxutils.min.js -------------------------------------------------------------------------------- /src/notebookjs/notebook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/src/notebookjs/notebook.js -------------------------------------------------------------------------------- /src/notebookjs/notebook.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/src/notebookjs/notebook.min.js -------------------------------------------------------------------------------- /src/notebookjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/src/notebookjs/package.json -------------------------------------------------------------------------------- /static/auto-render.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/auto-render.min.js -------------------------------------------------------------------------------- /static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/custom.css -------------------------------------------------------------------------------- /static/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/custom.js -------------------------------------------------------------------------------- /static/fonts/KaTeX_AMS-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_AMS-Regular.eot -------------------------------------------------------------------------------- /static/fonts/KaTeX_AMS-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_AMS-Regular.ttf -------------------------------------------------------------------------------- /static/fonts/KaTeX_AMS-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_AMS-Regular.woff -------------------------------------------------------------------------------- /static/fonts/KaTeX_AMS-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_AMS-Regular.woff2 -------------------------------------------------------------------------------- /static/fonts/KaTeX_Caligraphic-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_Caligraphic-Bold.eot -------------------------------------------------------------------------------- /static/fonts/KaTeX_Caligraphic-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_Caligraphic-Bold.ttf -------------------------------------------------------------------------------- /static/fonts/KaTeX_Caligraphic-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_Caligraphic-Bold.woff -------------------------------------------------------------------------------- /static/fonts/KaTeX_Caligraphic-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_Caligraphic-Bold.woff2 -------------------------------------------------------------------------------- /static/fonts/KaTeX_Caligraphic-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_Caligraphic-Regular.eot -------------------------------------------------------------------------------- /static/fonts/KaTeX_Caligraphic-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_Caligraphic-Regular.ttf -------------------------------------------------------------------------------- /static/fonts/KaTeX_Caligraphic-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_Caligraphic-Regular.woff -------------------------------------------------------------------------------- /static/fonts/KaTeX_Caligraphic-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_Caligraphic-Regular.woff2 -------------------------------------------------------------------------------- /static/fonts/KaTeX_Fraktur-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_Fraktur-Bold.eot -------------------------------------------------------------------------------- /static/fonts/KaTeX_Fraktur-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_Fraktur-Bold.ttf -------------------------------------------------------------------------------- /static/fonts/KaTeX_Fraktur-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_Fraktur-Bold.woff -------------------------------------------------------------------------------- /static/fonts/KaTeX_Fraktur-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_Fraktur-Bold.woff2 -------------------------------------------------------------------------------- /static/fonts/KaTeX_Fraktur-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_Fraktur-Regular.eot -------------------------------------------------------------------------------- /static/fonts/KaTeX_Fraktur-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_Fraktur-Regular.ttf -------------------------------------------------------------------------------- /static/fonts/KaTeX_Fraktur-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_Fraktur-Regular.woff -------------------------------------------------------------------------------- /static/fonts/KaTeX_Fraktur-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_Fraktur-Regular.woff2 -------------------------------------------------------------------------------- /static/fonts/KaTeX_Main-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_Main-Bold.eot -------------------------------------------------------------------------------- /static/fonts/KaTeX_Main-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_Main-Bold.ttf -------------------------------------------------------------------------------- /static/fonts/KaTeX_Main-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_Main-Bold.woff -------------------------------------------------------------------------------- /static/fonts/KaTeX_Main-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_Main-Bold.woff2 -------------------------------------------------------------------------------- /static/fonts/KaTeX_Main-Italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_Main-Italic.eot -------------------------------------------------------------------------------- /static/fonts/KaTeX_Main-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_Main-Italic.ttf -------------------------------------------------------------------------------- /static/fonts/KaTeX_Main-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_Main-Italic.woff -------------------------------------------------------------------------------- /static/fonts/KaTeX_Main-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_Main-Italic.woff2 -------------------------------------------------------------------------------- /static/fonts/KaTeX_Main-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_Main-Regular.eot -------------------------------------------------------------------------------- /static/fonts/KaTeX_Main-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_Main-Regular.ttf -------------------------------------------------------------------------------- /static/fonts/KaTeX_Main-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_Main-Regular.woff -------------------------------------------------------------------------------- /static/fonts/KaTeX_Main-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_Main-Regular.woff2 -------------------------------------------------------------------------------- /static/fonts/KaTeX_Math-BoldItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_Math-BoldItalic.eot -------------------------------------------------------------------------------- /static/fonts/KaTeX_Math-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_Math-BoldItalic.ttf -------------------------------------------------------------------------------- /static/fonts/KaTeX_Math-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_Math-BoldItalic.woff -------------------------------------------------------------------------------- /static/fonts/KaTeX_Math-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_Math-BoldItalic.woff2 -------------------------------------------------------------------------------- /static/fonts/KaTeX_Math-Italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_Math-Italic.eot -------------------------------------------------------------------------------- /static/fonts/KaTeX_Math-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_Math-Italic.ttf -------------------------------------------------------------------------------- /static/fonts/KaTeX_Math-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_Math-Italic.woff -------------------------------------------------------------------------------- /static/fonts/KaTeX_Math-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_Math-Italic.woff2 -------------------------------------------------------------------------------- /static/fonts/KaTeX_Math-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_Math-Regular.eot -------------------------------------------------------------------------------- /static/fonts/KaTeX_Math-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_Math-Regular.ttf -------------------------------------------------------------------------------- /static/fonts/KaTeX_Math-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_Math-Regular.woff -------------------------------------------------------------------------------- /static/fonts/KaTeX_Math-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_Math-Regular.woff2 -------------------------------------------------------------------------------- /static/fonts/KaTeX_SansSerif-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_SansSerif-Bold.eot -------------------------------------------------------------------------------- /static/fonts/KaTeX_SansSerif-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_SansSerif-Bold.ttf -------------------------------------------------------------------------------- /static/fonts/KaTeX_SansSerif-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_SansSerif-Bold.woff -------------------------------------------------------------------------------- /static/fonts/KaTeX_SansSerif-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_SansSerif-Bold.woff2 -------------------------------------------------------------------------------- /static/fonts/KaTeX_SansSerif-Italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_SansSerif-Italic.eot -------------------------------------------------------------------------------- /static/fonts/KaTeX_SansSerif-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_SansSerif-Italic.ttf -------------------------------------------------------------------------------- /static/fonts/KaTeX_SansSerif-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_SansSerif-Italic.woff -------------------------------------------------------------------------------- /static/fonts/KaTeX_SansSerif-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_SansSerif-Italic.woff2 -------------------------------------------------------------------------------- /static/fonts/KaTeX_SansSerif-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_SansSerif-Regular.eot -------------------------------------------------------------------------------- /static/fonts/KaTeX_SansSerif-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_SansSerif-Regular.ttf -------------------------------------------------------------------------------- /static/fonts/KaTeX_SansSerif-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_SansSerif-Regular.woff -------------------------------------------------------------------------------- /static/fonts/KaTeX_SansSerif-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_SansSerif-Regular.woff2 -------------------------------------------------------------------------------- /static/fonts/KaTeX_Script-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_Script-Regular.eot -------------------------------------------------------------------------------- /static/fonts/KaTeX_Script-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_Script-Regular.ttf -------------------------------------------------------------------------------- /static/fonts/KaTeX_Script-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_Script-Regular.woff -------------------------------------------------------------------------------- /static/fonts/KaTeX_Script-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_Script-Regular.woff2 -------------------------------------------------------------------------------- /static/fonts/KaTeX_Size1-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_Size1-Regular.eot -------------------------------------------------------------------------------- /static/fonts/KaTeX_Size1-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_Size1-Regular.ttf -------------------------------------------------------------------------------- /static/fonts/KaTeX_Size1-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_Size1-Regular.woff -------------------------------------------------------------------------------- /static/fonts/KaTeX_Size1-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_Size1-Regular.woff2 -------------------------------------------------------------------------------- /static/fonts/KaTeX_Size2-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_Size2-Regular.eot -------------------------------------------------------------------------------- /static/fonts/KaTeX_Size2-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_Size2-Regular.ttf -------------------------------------------------------------------------------- /static/fonts/KaTeX_Size2-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_Size2-Regular.woff -------------------------------------------------------------------------------- /static/fonts/KaTeX_Size2-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_Size2-Regular.woff2 -------------------------------------------------------------------------------- /static/fonts/KaTeX_Size3-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_Size3-Regular.eot -------------------------------------------------------------------------------- /static/fonts/KaTeX_Size3-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_Size3-Regular.ttf -------------------------------------------------------------------------------- /static/fonts/KaTeX_Size3-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_Size3-Regular.woff -------------------------------------------------------------------------------- /static/fonts/KaTeX_Size3-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_Size3-Regular.woff2 -------------------------------------------------------------------------------- /static/fonts/KaTeX_Size4-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_Size4-Regular.eot -------------------------------------------------------------------------------- /static/fonts/KaTeX_Size4-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_Size4-Regular.ttf -------------------------------------------------------------------------------- /static/fonts/KaTeX_Size4-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_Size4-Regular.woff -------------------------------------------------------------------------------- /static/fonts/KaTeX_Size4-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_Size4-Regular.woff2 -------------------------------------------------------------------------------- /static/fonts/KaTeX_Typewriter-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_Typewriter-Regular.eot -------------------------------------------------------------------------------- /static/fonts/KaTeX_Typewriter-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_Typewriter-Regular.ttf -------------------------------------------------------------------------------- /static/fonts/KaTeX_Typewriter-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_Typewriter-Regular.woff -------------------------------------------------------------------------------- /static/fonts/KaTeX_Typewriter-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/fonts/KaTeX_Typewriter-Regular.woff2 -------------------------------------------------------------------------------- /static/katex.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/katex.min.css -------------------------------------------------------------------------------- /static/katex.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/katex.min.js -------------------------------------------------------------------------------- /static/notebook.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/notebook.css -------------------------------------------------------------------------------- /static/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/prism.css -------------------------------------------------------------------------------- /static/require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/static/require.js -------------------------------------------------------------------------------- /test/extension.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/test/extension.test.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/test/index.js -------------------------------------------------------------------------------- /vsc-extension-quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jithurjacob/vscode-nbpreviewer/HEAD/vsc-extension-quickstart.md --------------------------------------------------------------------------------