From 81eef51e887bd20512febac5eae135f9447d6df7 Mon Sep 17 00:00:00 2001 From: Danila Fedorin Date: Mon, 13 May 2024 19:02:14 -0700 Subject: [PATCH] Update 'math rendering is wrong' to new math delimiters Signed-off-by: Danila Fedorin --- content/blog/math_rendering_is_wrong.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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