Markdown Preview 0.0.17
Two macOS 26 fixes — the window opens at full size again, and inline math renders correctly in RTL paragraphs.
Fixed
- Window no longer launches collapsed on macOS 26. The find bar's bottom rule (an
NSBoxwithboxType = .separator) inside a bottomNSTitlebarAccessoryViewControllerwas triggering an AppKit layout regression that bypassed the window'scontentMinSizeand snapped the window to the toolbar's natural minimum width (~169 pt) on launch. Only vertical resizing worked, and toggling the sidebar made the window disappear. Replaced the find-bar separator and the access banner's separators with a 1 ptNSViewfilled withNSColor.separatorColor— same look, no regression (#79, #81). - Inline KaTeX math stays LTR inside RTL paragraphs. Math embedded in Hebrew / Arabic paragraphs was inheriting the surrounding RTL direction and rendering reversed (e.g.
$f(x)=x^2$came out asf(x) = ^2x). The Markdown stylesheet now pins.katextodirection: ltrwithunicode-bidi: isolate, so math renders LTR while the surrounding RTL text continues to flow right-to-left (#76).
Contributors
Thanks to the external contributors who shipped in this release:
- @manemajef — inline KaTeX math direction fix in RTL paragraphs (#76)
- @pryley — reported the window-collapse bug on macOS 26 (#79)