The Fix Math for Obsidian plugin provides a focused, single command way to convert common LaTeX delimiters and plain parentheses math into the $...$ forms your notes expect. It adds a ribbon button and a command-palette entry to process the currently open file, preserves fenced code blocks and existing $...$ delimiters and reports real time statistics in notifications and the status bar. The converter uses readable TypeScript and heuristics to detect inline and display math, covering \(...\), \[...\], smart ( ... ) detection (including AI assistant bracket output) and quoted block math
Fix: preserve nested brackets inside converted block math (1.0.18)
When a multiline block like:
[
\mathbf{X} = [\mathbf{1}\ \mathbf{S}]
]
was converted, the inner [\mathbf{1}\ \mathbf{S}] was mistakenly converted to a separate display math block, breaking the formula. Now the outer block becomes a single dollar-dollar block and inner brackets are left intact.