Demo Post
Posted on 2020-07-09 21:57:38
Preview:
<!-- markdownlint-disable MD001 MD025 -->
This is a demonstration post for the purpose of testing the site layout for blog
posts. There really isn't any valuable content here.
First, let's see how headings look!
# Heading 1
## Heading 2
### Heading 3
#### Heading 4
##### Heading 5
###### Heading 6
Now for some _italic text_ followed by **bold text** followed by **_bold italic
text_** followed by ~~striked text~~ and finally a [hyperlink](#nowhere). And
this sentence has `inline code {}` right in the middle.
Interestingly[^1] this text has footnotes[^2].
[^1]: This is the contents of the footnote.
[^2]:
While these footnotes are in the center of the text, they appear only at the
bottom of the page.
Did you hear that thing that someone else said?
> ## One Heading
>
> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean aliquam
> pulvinar erat, eleifend accumsan nisl convallis ac. Vivamus vulputate erat in
> justo iaculis, vel accumsan turpis feugiat. Integer gravida mi et suscipit
> varius. Phasellus quis mauris vitae ligula vehicula gravida sed sit amet ante.
> Quisque fringilla libero at erat malesuada, ut semper leo sodales. Quisque
> pretium convallis metus in posuere. Proin a molestie justo, et laoreet leo.
> Donec sagittis elementum libero ac fermentum. Aenean quam est, dapibus quis
> tincidunt nec, fringilla vulputate metus.
>
> ```go
> package main
>
> import (
> "fmt"
> "time"
> )
>
> func main() {
> // This is a comment!
> fmt.Println("Hello, world!")
>
> now := time.Now()
> fmt.Printf("The current time is %s", now.Format(time.Kitchen))
> }
> ```
>
> | Title | Description |
> |