A Short Guide to Pelican Markdown Markup

**Bold Text**

*Italic Text*

[Link name](http://path/to/site) -> Example

Lists with -

  • List item 1
  • List item 2
  • List item 3

Numbered lists

  1. Item 1
  2. Item 2
  3. Item 3

Code

```go

package main

import (
    "fmt"
)

func main() {
    fmt.Println("Hello from go!")
}

```