Skip to content

Display math block starting with \[ fails to render when it immediately follows text without a blank line #22821

@yuriever

Description

@yuriever

What version of the Codex App are you using (From “About Codex” dialog)?

26.513.20950

What subscription do you have?

pro

What platform is your computer?

Darwin 25.4.0 arm64 arm

What issue are you seeing?

In Codex 26.513.20950, display math written with \[ ... \] sometimes fails to render when it appears immediately after a normal text line with no blank line in between. Instead of being parsed as a math block, the content is treated as regular Markdown/text. In the broken case, the leading backslash on \[ is effectively lost, and the formula body may be reinterpreted by Markdown rules.

What steps can reproduce the bug?

  1. Send the following message:
Previous line has text
\[
a
=
b
\]
  1. Observe that the math block does not render correctly.

  2. Compare with this working version:

Previous line has text

\[
a
=
b
\]
  1. Also compare with this working version, where the formula is preceded by a blank line and wrapped in \boxed:
Previous line has text

\[
\boxed{
a
=
b
}
\]

What is the expected behavior?

A display math block starting with \[ should render correctly regardless of whether the previous line contains plain text, as long as the \[ ... \] block itself is syntactically valid. The renderer should not require an extra blank line before the math block in order to recognize it.

Additional information

  • The issue is not caused by undefined macros. Simple formulas such as a = b reproduce it.
  • The issue is sensitive to surrounding paragraph structure.
  • Adding a blank line before \[ consistently avoids the bug.
  • When the bug occurs, the content appears to fall back to normal Markdown parsing rather than math parsing.
  • This suggests the block-math parser is not recognizing \[ as a block opener when it immediately follows paragraph text.
  • Previous version of codex does not have this issue.

Metadata

Metadata

Assignees

No one assigned

    Labels

    appIssues related to the Codex desktop appbugSomething isn't working

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions