In an effort to simplify and speed up my blog, I’m migrating from my custom-made NextJS SPA to Hugo, which means reformatting the frontmatter header of every blog post from this: --- title: My Blog Post category: Blog tags: blog, post, blog-post date: "2023-03-18" summary: Summary goes here --- to this: +++ title: "My Blog Post" tags: ["blog", "post", "blog-post"] date: "2023-03-18" summary: "Summary goes here" +++ Not a big deal to go through and change manually, but I recently dipped my t...