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?
- Send the following message:
Previous line has text
\[
a
=
b
\]
-
Observe that the math block does not render correctly.
-
Compare with this working version:
Previous line has text
\[
a
=
b
\]
- 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.
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?
Observe that the math block does not render correctly.
Compare with this working version:
\boxed: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
a = breproduce it.\[consistently avoids the bug.\[as a block opener when it immediately follows paragraph text.