43 lines
510 B
Markdown
43 lines
510 B
Markdown
|
---
|
||
|
title = "Test"
|
||
|
date = 2021-10-01
|
||
|
tags = ["test", "example"]
|
||
|
---
|
||
|
|
||
|
# H1
|
||
|
## H2
|
||
|
### H3
|
||
|
#### H4
|
||
|
##### H5
|
||
|
###### H6
|
||
|
|
||
|
This is a test, and all the ways I learned to test. :slightly_smiling_face:
|
||
|
|
||
|
* Foo
|
||
|
* Bar
|
||
|
* Baz
|
||
|
* Banana
|
||
|
|
||
|
[Link Home](/)
|
||
|
|
||
|
<!-- emdbed: test.go -->
|
||
|
<!--/emdbed -->
|
||
|
|
||
|
Some **more** text!
|
||
|
|
||
|
```go
|
||
|
package main
|
||
|
|
||
|
import "fmt"
|
||
|
|
||
|
func main() {
|
||
|
fmt.Println("Hello,", "blog!")
|
||
|
}
|
||
|
```
|
||
|
|
||
|
## Okay, moving on
|
||
|
|
||
|
_This_ time ~~we~~ I am going to **test** some emphasis.
|
||
|
|
||
|
<!-- emdbed: test.sql L2 -->
|
||
|
<!--/emdbed -->
|