1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
+++
title = "Introduction"
summary = "An introduction of my blog"
date = 2024-02-17
category = "Miscellaneous"
draft = true
+++
# Hello and welcome to my blog!
My blog consists of a home-rolled SSG.
<small>Truly cutting edge, I know. Never seen one of these before, have you?</small>
This article mainly exists as a "kitchen sink" to check out style changes when I make them.
```go
package main
import "fmt"
func main() {
fmt.Println("Hello, blog!")
}
````
Things it can do:
- [x] Render code :pencil:
- [ ] Fill the void[^1] :black_circle:
- [x] Generate an [~~RSS~~ Atom Feed](/feed.atom)
> atom is like rss, but better (??), but not all feeds support it, but a lot do, but rss is more widely supported, but most people use atom, except for the people who use rss, which is probably more
`blog` parses some articles (in markdown format), renders them, and pushes them to an output directory.
It can handle emoji :bomb: and code highlighting:
```python
def main():
print("Hello, blog!")
```
||Is written in Go|Has "Go" in the name|
|---|---|---|
|`blog`|:heavy_check_mark:|:x:|
|`hugo`|:heavy_check_mark:|:heavy_check_mark:|
[^1]: Blogs don't usually fill voids, so this might be normal.
|