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
feat: remove delimiters around latex text before converting
## Details
Remove non-latex delimiters around latex text to help converters produce
more correct outputs. For example in the demo:
```
$$
f(x,y) = x + \sqrt{y}
f(x,y) = \sqrt{y} + \frac{x^2}{4y}
$$
```
The difference in the input to the converter is:
- before: `$$\nf(x,y) = x + \\sqrt{y}\nf(x,y) = \\sqrt{y} + \\frac{x^2}{4y}\n$$`
- after: `f(x,y) = x + \\sqrt{y}\nf(x,y) = \\sqrt{y} + \\frac{x^2}{4y}`
Minor other change, move sorting of nodes into row level chunks into the
main latex handler rather than being part of the request context.
0 commit comments