editorjs-simple-latex
v1.0.4
Published
Tools for entering LaTeX in EditorJS - based on katex
Downloads
5
Readme
editorjs-latex
Tools for entering latex in editorjs - based on katex
how to use
add tools option like this
<script type="module">
const editor = new EditorJS({
autofocus: true,
tools: {
latex: {
class: LaTeX,
},
},
});
</script>
typescript
declare type like this in d.ts
file
declare module 'editorjs-simple-latex' {
import LaTeX from 'editorjs-simple-latex';
export = LaTeX;
}