summaryrefslogtreecommitdiff
path: root/content
diff options
context:
space:
mode:
authorMichał M. Sapka <michal@sapka.me>2023-05-09 19:41:45 +0200
committerMichał M. Sapka <michal@sapka.me>2023-05-09 19:41:45 +0200
commitf5caf6ae00110e1239f6794c2f5671ec19563db7 (patch)
treeccf02c357b8602f26c131c8c0811c4ac134cf039 /content
parentef00e77dd8350847843fcaea71aff62700db0e63 (diff)
fix: typo
Diffstat (limited to 'content')
-rw-r--r--content/2023/footnotes-in-hugo-and-goldmark.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/2023/footnotes-in-hugo-and-goldmark.md b/content/2023/footnotes-in-hugo-and-goldmark.md
index 6302a2c..30e9c24 100644
--- 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.