-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
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
LaTeX with inline: $ and block: $$ #1201
Comments
I don't know which is preferred {inline: |
@rokt33r/markdown-it-math's default setting is var options = {
inlineOpen: '$$',
inlineClose: '$$',
blockOpen: '$$$',
blockClose: '$$$',
renderingOptions: {},
inlineRenderer: require('ascii2mathml')(this.rendererOptions),
blockRenderer: require('ascii2mathml')(Object.assign({ display: 'block' },
this.renderingOptions))
} so we can change them by only switching |
#1221 will solve this. |
Thanks @Paalon ;) |
Does the current version supports Math using MathJax? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Many markdown editors support LaTeX with inline:
$
and block:$$
but Boostnote seems to support inline:$$
and block:$$$
only. I think we need to support inline:$
and block:$$
support for LaTeX.The text was updated successfully, but these errors were encountered: