docs: escape quote currency values#528
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Greptile SummaryThis PR fixes two unescaped
Confidence Score: 5/5Documentation-only change with a correct and targeted fix; safe to merge. The change is a two-character escaping fix in a single MDX prose sentence with no logic, API, or schema impact. No files require special attention, though the same file has additional unescaped
|
| Filename | Overview |
|---|---|
| mintlify/platform-overview/core-concepts/quote-system.mdx | Escapes two $ signs in the quote explanation sentence (line 105) to prevent MDX math-delimiter misinterpretation; several other unescaped $ occurrences remain in the same file. |
Flowchart
%%{init: {'theme': 'neutral'}}%%
flowchart TD
A["MDX source: $1,000 / $5.00"] -->|"Before fix"| B["Mintlify parser interprets $ as math delimiter"]
B --> C["Broken / garbled render in docs"]
A2["MDX source: \\$1,000 / \\$5.00"] -->|"After fix"| D["Mintlify parser treats $ as literal character"]
D --> E["Correct render: $1,000 USD and $5.00"]
Prompt To Fix All With AI
Fix the following 1 code review issue. Work through them one at a time, proposing concise fixes.
---
### Issue 1 of 1
mintlify/platform-overview/core-concepts/quote-system.mdx:333-341
**Unescaped `$` signs in the same file**
This PR escapes `$` on line 105 to prevent MDX/LaTeX math-delimiter interpretation, but the same unescaped pattern appears in several other prose bullet points in the "Rate Details Breakdown" section (lines 333, 336, 339, 340, 341). If the rendering fix was needed at line 105, these instances are likely affected by the same issue and should also use `\$`.
Reviews (2): Last reviewed commit: "docs: escape quote currency values" | Re-trigger Greptile
107343e to
dc15257
Compare
|
Preview deployment for your docs. Learn more about Mintlify Previews.
|

Current docs formatting on this line is messed up:
Now it looks like:
