Open kamalbanga opened 9 months ago
BTW @xushengs, thanks for creating this library :)
breaks the formula into the next line
This looks like a bug in flutter_markdown: https://github.com/flutter/flutter/issues/123195
single dollar inline latex format: $e = mc^2$
is not supported by most markdown libs. because they treat $$ e = mc^ 2 $$
as inline too. If you can use $$ $$
just used it for compatibility.
BTW, I just tested this and this didn't get fixed!
I am waiting for this fix. long text after latex equation comes to next line.
also sometimes the latex is not rendered, if it's at the end of line
This is inline latex: $f(x) = \\sum_{i=0}^{n} \\frac{a_i}{1+x}$
works fine butExtra words for testing. This is inline latex: $f(x) = \\sum_{i=0}^{n} \\frac{a_i}{1+x}$
doesn't. The 2nd one breaks the formula into the next line unnecessarily.