Home

blog @615129be36f02b57ea0065ba9af6196f34014938 - refs - log -
-
https://git.jolheiser.com/blog.git
My nonexistent blog
blog / _example / articles / introduction.md
- raw
 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
---
title: "Introduction"
summary: "An introduction of `blog`"
time: 2024-02-17
category: Miscellaneous
authors:
  - name: "jolheiser"
    email: "john+blog@jolheiser.com"
---

# Hello and welcome to blog!

`blog` is a simple static blog generator!

<small>Truly cutting edge, I know. Never seen one of these before, have you?</small>

```go
package main

import "fmt"

func main() {
  fmt.Println("Hello, blog!")
}
````

Things it can do:

- [x] Render code :pencil:
- [ ] Fill the void :black_circle:

## Why was blog created?

~~Because I needed a specific thing that other generators couldn't give me. Blog is up to 1000 times faster than \<hot other blog generator\>!!!~~

Because I wanted to, like many other projects in this space. Blog is designed to be simple (to me) with enough flexibility for someone else to use without
cursing at me (too much).

---

`blog` parses some templates and 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!")
```