We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As a reader of Markdown-IT-KaTeX documentation, I want to be enlightened and informed.
In the section Katex extension, this code snippet leaves me confused.
import MarkdownIt from 'markdown-it' import katex from 'katex' import 'katex/contrib/mhchem' import 'katex/contrib/copy-tex' const md = new MarkdownIt() katexPlugin(md, { katex, })
From where does the reader derive katexPlugin?
katexPlugin
This is the only place that katexPlugin is mentioned.
The text was updated successfully, but these errors were encountered:
this works for me:
import MarkdownIt from 'markdown-it' import katex from 'katex' import 'katex/contrib/mhchem' import 'katex/contrib/copy-tex' const md = new MarkdownIt() md.use(mk,{"katex":katex});
Sorry, something went wrong.
Yes, I have code like that in my application currently.
But - My goal is getting the maintainer to update the documentation one way or another because this katexPlugin thing simply doesn't make sense.
No branches or pull requests
As a reader of Markdown-IT-KaTeX documentation, I want to be enlightened and informed.
In the section Katex extension, this code snippet leaves me confused.
From where does the reader derive
katexPlugin
?This is the only place that
katexPlugin
is mentioned.The text was updated successfully, but these errors were encountered: