From 6c5804ff2f198ac70d50f9b6a641d471e88e0b6d Mon Sep 17 00:00:00 2001 From: David Eisinger Date: Fri, 19 Dec 2025 14:57:03 -0500 Subject: [PATCH] Fix a couple code fence issues --- content/journal/migrating-from-github-to-sourcehut/index.md | 2 +- content/notes/golang/index.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/content/journal/migrating-from-github-to-sourcehut/index.md b/content/journal/migrating-from-github-to-sourcehut/index.md index c6b4442..cc6b087 100644 --- a/content/journal/migrating-from-github-to-sourcehut/index.md +++ b/content/journal/migrating-from-github-to-sourcehut/index.md @@ -44,7 +44,7 @@ Adding a new remote is as simple as git remote rename origin github git remote add origin git@git.sr.ht:~dce/davideisinger.com git push origin main -```` +``` But switching from GitHub Actions to SourceHut Builds took some doing. A few things to note: diff --git a/content/notes/golang/index.md b/content/notes/golang/index.md index 749a5fb..6580ea5 100644 --- a/content/notes/golang/index.md +++ b/content/notes/golang/index.md @@ -103,7 +103,7 @@ I find [Go][1] really compelling, even though it's not super applicable to my jo > > ``` > ParameterDecl = [ IdentifierList ] [ "..." ] Type . - > ```` + > ``` > > As you can see, the `IdentifierList` (the identifier name or names) is in square brackets, which means it's _optional_. Only the `Type` is required. >