diff --git a/content/posts/automatically-update-matomo-excluded-ips.md b/content/posts/automatically-update-matomo-excluded-ips.md index fd33a4b..280429b 100644 --- a/content/posts/automatically-update-matomo-excluded-ips.md +++ b/content/posts/automatically-update-matomo-excluded-ips.md @@ -3,6 +3,7 @@ title: "Automatically Update Matomo Excluded IPs" date: 2022-02-28T14:54:56-08:00 tags: - programming +description: "Going into Matomo to manually update excluded IPs to prevent your own visits from being counted is a pain. Learn how to write a command that updates them so you don’t have to!" --- > :warning: Edited from [my forum posts on Matomo forums](https://forum.matomo.org/t/cant-find-global-website-settings-global-excluded-ips-etc-in-database-nor-configuration-files/44888) diff --git a/content/posts/cleaning-up-html-with-tidy.md b/content/posts/cleaning-up-html-with-tidy.md index 29221a8..5194ae2 100644 --- a/content/posts/cleaning-up-html-with-tidy.md +++ b/content/posts/cleaning-up-html-with-tidy.md @@ -3,6 +3,7 @@ title: "Cleaning Up HTML with Tidy" date: 2022-01-24T13:04:45-08:00 tags: - programming +description: "Static site generators such as Hugo create incredibly messy HTML output. Luckily, HTML tidy can make your ugly markup pristine, even removing comments! Let’s learn how to use tidy and configure it to your needs." --- One issue with using static site generators that use templates like [Hugo](https://gohugo.io) is that their generated HTML files are often incredibly messy, with bad indentation, tons of unneeded whitespace, and overall unconcise formatting. While it *is* technically possible to fix this in your templates, it takes a lot of effort, makes your templates less readable, and frankly is a waste of time. diff --git a/content/posts/final-fantasy-japanese-playthrough-part-1/index.md b/content/posts/final-fantasy-japanese-playthrough-part-1/index.md index e218790..0387d2c 100644 --- a/content/posts/final-fantasy-japanese-playthrough-part-1/index.md +++ b/content/posts/final-fantasy-japanese-playthrough-part-1/index.md @@ -4,6 +4,7 @@ date: 2022-01-27T20:55:43-08:00 tags: - japanese - ff +description: "An analysis of the Japanese opening text of Final Fantasy (1987) for the Famicom." --- > **Disclaimer:** There may be mistakes in the Japanese content in this post, I am not an expert. This is simply some of my personal notes that I am making public as a blog post. Use this as reference with caution. diff --git a/content/posts/furigana-in-markdown-using-regular-expressions.md b/content/posts/furigana-in-markdown-using-regular-expressions.md index 587f6ab..ae75116 100644 --- a/content/posts/furigana-in-markdown-using-regular-expressions.md +++ b/content/posts/furigana-in-markdown-using-regular-expressions.md @@ -4,6 +4,7 @@ date: 2022-01-23T14:47:56-08:00 tags: - japanese - programming +description: "The Markdown spec doesn’t include support for furigana, more commonly known as ruby text, which can be troublesome if you want to write content in Japanese. In this tutorial, learn how to add furigana support to Hugo using regular expressions!" --- > TL;DR: [Here](#creating-the-regular-expression)