commit f5caf6ae00110e1239f6794c2f5671ec19563db7
parent ef00e77dd8350847843fcaea71aff62700db0e63
Author: Michał M. Sapka <michal@sapka.me>
Date: Tue, 9 May 2023 19:41:45 +0200
fix: typo
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/content/2023/footnotes-in-hugo-and-goldmark.md b/content/2023/footnotes-in-hugo-and-goldmark.md
@@ -53,7 +53,7 @@ Choose what's best.—Best is what benefits me.[^translator]
[^translator]: Hays translation
```
-This mechanism, however is imperfect, as we can't easily customize how it's displayed. To do any customization, we no use CSS[^stylize] or Java Script[^js]. Before Hugo moved to Goldmark, the parsing was handled by Blackfriday[^blackfriday] which allowed for more styling. Well, we've got what we've got.
+This mechanism, however is imperfect, as we can't easily customize how it's displayed. To do any customization, we need to use CSS[^stylize] or Java Script[^js]. Before Hugo moved to Goldmark, the parsing was handled by Blackfriday[^blackfriday] which allowed for more styling. Well, we've got what we've got.
But the bigger problem is the (lack of) uniqueness of generated IDs. Goldmark doesn't know about Hugo, and Hugo generally doesn't know what Goldmark is doing. The geneated IDs are unique for a single post, but not for the entire page. It makes my homepage broken since I put full content of each post there. I will most likely replace the homepage with simple list of posts, since I already plan a (yet another) overhaul of this site. For now, footnotes will be broken on the homepage. It will go nicely with the non-styled footnotes you see bellow.