Description
Wiki pages that contain LaTeX math expressions (e.g., $E = mc^2$ or $$\sum_{i=1}^{n} x_i$$) display them as raw text instead of rendered formulas.
Root Cause
The Markdown.tsx component uses react-markdown with remark-gfm and rehype-raw, but does not include remark-math or rehype-katex plugins for math rendering. Although katex exists as a transitive dependency, it is never imported or used.
Expected Behavior
Both inline ($...$) and display ($$...$$) LaTeX math expressions should be rendered as formatted mathematical notation using KaTeX.