You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This plug-in seems only support dollar signs as delimiters, but \[ and \( are also widely used (e.g. math formula in response from chatgpt). I was wondering if these would be supported here.
The text was updated successfully, but these errors were encountered:
As a workaround it's possible to preprocess the markdown text to replace \( style delimiters with $-style delimiters.
The KaTeX project provides the file contrib/auto-render/splitAtDelimiters.js which can be used in a custom script normalizeDelimiters.js:
@vscode/markdown-it-katex should probably consider replacing the custom parsing done in src/index.ts by leveraging contrib/auto-render/splitAtDelimiters.js from the KaTeX project.
This plug-in seems only support dollar signs as delimiters, but
\[
and\(
are also widely used (e.g. math formula in response from chatgpt). I was wondering if these would be supported here.The text was updated successfully, but these errors were encountered: