This commit is contained in:
2024-01-17 12:02:03 -07:00
parent 161cc95538
commit f8ce4e3b48
43 changed files with 1614 additions and 21 deletions

13
content/code-blocks.md Normal file
View File

@ -0,0 +1,13 @@
---
name: "Code Blocks"
date: "April 20 1337"
tags: ["article","demo"]
---
# Markdown is cool!
Here is an example of a code block!:
```go
func onePlusOne() int {
return 1 + 1
}
```