diff --git a/content/blog/math_rendering_is_wrong.md b/content/blog/math_rendering_is_wrong.md index 159fd3b..6f0ffa7 100644 --- a/content/blog/math_rendering_is_wrong.md +++ b/content/blog/math_rendering_is_wrong.md @@ -49,7 +49,7 @@ in common with each other and with the early iterations of my website - they use client-side rendering for static content. In my opinion, this is absurd. Every time that you visit a website that uses MathJax or KaTeX, any mathematical notation arrives to your machine in the form of LaTex markup. For instance, -\\(e^{-\\frac{x}{2}}\\) looks like `e^{-\frac{x}{2}}`. The rendering +\(e^{-\frac{x}{2}}\) looks like `e^{-\frac{x}{2}}`. The rendering software (MathJax or KaTeX) then takes this markup and converts it into HTML and CSS that your browser can display. Just like my old website, all of this happens __every time the page is loaded__. This isn't an uncommon