mathpix-markdown-it
mathpix-markdown-it copied to clipboard
【BUG】math inline mode with whitespace not parse
the math code is in $ but with whitespace is not render
below is ok
hello math $ax^2+bx+c=0$
below is bad
hello math $ ax^2+bx+c=0 $
hope with whitespace can render
@xiaoyvyv This is expected behavior. If the $...$ entry has spaces after and before the $, it will not be considered a math separator.
If you need spaces for the inline math, you can use \(...\) delimiters instead of $...$