You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When a theme is saved in localStorage, the theme restore script calls mermaid.initialize({startOnLoad: false}), overriding the initial config before DOMContentLoaded fires, so diagrams are never rendered.
Table column widths are equal
width: 100% causes columns to be distributed equally.
Column widths should adjust to content.
Display math ($$...$$) is too large
Block math renders too large relative to body text.
No syntax highlighting for ```cpp
C++ code blocks appear uncolored (or colors are too subtle to notice).
Add math rendering support using goldmark-mathjax and KaTeX #4: Investigation shows highlighting is working correctly; the github Chroma style uses near-black for control-flow keywords which may look unstyled — recommend hard refresh to clear CSS cache
Reported Issues
Mermaid diagrams not rendering
mermaid.initialize({startOnLoad: false}), overriding the initial config before DOMContentLoaded fires, so diagrams are never rendered.Table column widths are equal
width: 100%causes columns to be distributed equally.Display math ($$...$$ ) is too large
No syntax highlighting for ```cpp
Resolution
startOnLoad: false+ explicitmermaid.run()in DOMContentLoaded; pin CDN tomermaid@10width: auto; table-layout: auto.math.display { font-size: 0.9em; overflow-x: auto }Related PR
#57