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
I added import remarkMath from 'remark-math'; to my remark plugins.
import remarkMath from 'remark-math';
I then added a custom component inlineMath: { console.log('Hello!'); }
inlineMath: { console.log('Hello!'); }
I would expect inlineMath to be called when rendering math expression, but it isn't.
inlineMath
What am I missing?
The text was updated successfully, but these errors were encountered:
I do not know where you got the word inlineMath from. That doesn’t happen. There’s no code that does what you expect.
Math (“inline” or “block”) uses <code> elements.
<code>
Keys in components are HTML tag names.
Sorry, something went wrong.
No branches or pull requests
Initial checklist
Problem
I added
import remarkMath from 'remark-math';
to my remark plugins.I then added a custom component
inlineMath: { console.log('Hello!'); }
I would expect
inlineMath
to be called when rendering math expression, but it isn't.What am I missing?
The text was updated successfully, but these errors were encountered: