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
When converting multi-line equations, the output would includes unnecessary leading "latex" and trailing "" markdown marks. These marks appear in the rendered equations on the demo website, disrupting the intended display and readability of content.
Expected vs. Actual Behavior
Expected: Equations rendered without any markdown formatting marks, maintaining clarity and presentation quality.
Actual: Output contains "latex" and "" marks, affecting equation readability and presentation.
Steps to Reproduce
Navigate to the demo website.
Upload the provided picture
Observe the rendered output
Suggested Fix
Implement a regex-based solution to strip the leading and trailing markdown marks from equations before rendering.
Possible pattern: /^```latex\s+|\s+```$/g
The text was updated successfully, but these errors were encountered:
Issue Description
When converting multi-line equations, the output would includes unnecessary leading "
latex" and trailing "
" markdown marks. These marks appear in the rendered equations on the demo website, disrupting the intended display and readability of content.Expected vs. Actual Behavior
latex" and "
" marks, affecting equation readability and presentation.Steps to Reproduce
Suggested Fix
Implement a regex-based solution to strip the leading and trailing markdown marks from equations before rendering.
Possible pattern:
/^```latex\s+|\s+```$/g
The text was updated successfully, but these errors were encountered: