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
There is a syntax conflict with arve0/markdown-it-attrs:
var md = require('markdown-it')(); md.use(require('markdown-it-katex')); md.use(require('markdown-it-attrs')); var result = md.render('$\\sqrt{a}$'); console.log(result) // outputs <p a="">\sqrt</p>
Workaround: Changing the delimiters of markdown-it-attrs
Is there a way to resolve this without changing the delimiters or does markdown-it not support two plugins with conflicting syntaxes?
The text was updated successfully, but these errors were encountered:
fix: resolve conflict with markdown-it-katex plugin
89dd751
Related issue waylonflinn/markdown-it-katex#24
771841b
26870c6
No branches or pull requests
There is a syntax conflict with arve0/markdown-it-attrs:
Workaround: Changing the delimiters of markdown-it-attrs
Is there a way to resolve this without changing the delimiters or does markdown-it not support two plugins with conflicting syntaxes?
The text was updated successfully, but these errors were encountered: