From 39f47b95641143efa99ca4168af58f4d379735be Mon Sep 17 00:00:00 2001 From: Devon Wolfkiel Date: Mon, 17 Oct 2022 20:24:39 -0700 Subject: [PATCH] Clean up section where Markdown gets parsed oddly --- writer/writing.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/writer/writing.md b/writer/writing.md index 41b3bc4..bd4cede 100644 --- a/writer/writing.md +++ b/writer/writing.md @@ -150,7 +150,7 @@ Download the command-line client and run `./writeas new` ### Syntax-highlighted Code Blocks -
```go
+
```go
 package main
 
 import "fmt"
@@ -158,7 +158,7 @@ import "fmt"
 func main() {
 	fmt.Println("Hello, world")
 }
-```
+```
```go package main