Moving from Hugo to Hakyll

2024-11-09 (updated: 2024-11-09 10:59)


Five years ago I decided to rewrite this website with a static site generator, and chose Hugo on a whim. After letting it sit around unused for far too long, I moved it to Hakyll. Now that I’m getting back into Haskell, it was a perfect small project, and Pandoc is unbeatable as a document conversion backend.

The built in code highlighter works well enough if you override some of the styling. It is aparently also possible to use pygmentize if you want to go through the trouble.

toSlug :: T.Text -> T.Text
toSlug =
  T.intercalate (T.singleton '-') . T.words . T.toLower . clean

I chose a perfect time to move, as MathML finally has full support across all browsers as of Chromium 109, so the whole MathJax/KaTeX and JS rendering question is finally over. We are free! Here is an example and the associated markdown:

Inline math with MathML: y=mx+by = mx +b. Block/display style: lnx=x1ydy. \ln x = \int_{-\infty}^x \frac 1 y \, \mathrm{d}y .

Inline math with MathML: \\( y = mx +b \\). Block/display style:
\\[ \ln x = \int_{-\infty}^x \frac 1 y \, \mathrm{d}y . \\]

This is as easy as enabling the Ext_tex_math_double_backslash Pandoc extension and setting writerHTMLMathMethod = MathML in the Pandoc writer options. It is significantly uglier than what TeX would give you, but this is the price you pay if you want to avoid javascript or prerendering SVGs.

If you do want your math to look nice, instead of using the MathJax Pandoc writer, you can use MathML and put the MathJax CDN script in your header for drop in MathJax rendering that falls back gracefully to MathML instead of the typical raw LaTeX text. Why this isn’t the default behavior of the MathJax writer in Pandoc, who knows. You can also pre-render with KaTeX to get pretty HTML results, but this involves running javascript during the build process.

To see what this page looks like redered as pure MathML, just disable javascript. Thankfully, while still a real Hog coming in around 250kB compressed, MathJax 3 is much faster than it used to be. Definitely make sure to have this included only on the necessary pages.

(k=1nakbk)2(k=1nak2)(k=1nbk2)\left( \sum_{k=1}^n a_k b_k \right)^2 \leq \left( \sum_{k=1}^n a_k^2 \right) \left( \sum_{k=1}^n b_k^2 \right)