[Bug]: LaTeX in chat is broken: display math renders twice and unstyled, inline $...$ does not render

Open
#103 0 comments 0 reactions 0 assignees View on GitHub

Nobody has claimed this yet.

Assessment

Difficulty
3/5
Estimated time
1-2 days
Newbie friendliness
70/100
Issue type
Bug
Clarity
Mostly clear
Activity status
Active
Tech stack
latex
Domain
desktop, frontend

Research direction

Start with the math plugin's getStyles() entry point and inspect the generated index-.css and terminal-.css assets in the 0.1.35 build. Verify how KaTeX CSS and font files are included, then reproduce display and inline formulas to confirm each display renders once with styling and inline math is no longer literal text.

Written by the indexing model from the issue text.

Description

bug
GUI version

0.1.35

Operating system

Linux (Debian/Ubuntu)

Reproduction steps
  1. Send a single display formula, e.g.
    $$x = \frac{a}{b}$$
    or a message with several formulas (fractions, integrals, aligned blocks), e.g. $$e = mc^2$$.
  2. Also send inline math, e.g. $x^2$.
    • Display formulas appear twice. In the minimal repro (a single $$x = \frac{a}{b}$$) the first copy shows the fraction stacked, but small and unstyled, immediately followed by a second copy using plain characters.
    • Inline math is not rendered at all: $x^2$ stays as literal text.
Expected behavior

Each formula should be rendered only once, using a better style.

Actual behavior

Display math parses and renders, but the output is doubled and visually broken; inline math does not render at all.

AI analysis

Doubling: looking at the installed 0.1.35 build, the likely cause is the KaTeX stylesheet. The renderer ships only index-.css and terminal-.css and neither contains any .katex rules — katex.min.css appears nowhere in the app. KaTeX emits both HTML and a MathML fallback; the stylesheet is what normally hides the MathML and lays out the HTML. Without it, both outputs are visible: the native MathML copy renders on top, and the HTML copy collapses into a run of unstyled characters next to it.

Inline: $x^2$ stays as literal text.

Suggested fix: bundle katex.min.css together with the KaTeX font files (KaTeX_Main, KaTeX_Math, KaTeX_Size*) — neither is in the 0.1.35 build (only the Geist UI fonts ship). The math plugin already declares the stylesheet via getStyles() -> "katex/dist/katex.min.css", but it never reaches the build.

Screenshots, recordings, or sanitized logs
Image
Safety check
  • I removed credentials and private project information from this report.
Dominant language
Shell
Stars
80
Forks
2
PR merge metrics
No merged PRs in 30d

Contributor guide

No contributing guide indexed for this repository

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

More from CommandCodeAI/desktop

All issues in CommandCodeAI/desktop

Similar issues

More Shell/Bash issues

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.