aandrku.dev

Heading 1

Heading 2

Heading 3

Heading 4

Heading 5
Heading 6

A simple bold text, an italic text, and a strikethrough.

Inline code looks like this: fmt.Println("Hello, World!").


Lists

Unordered list:

  • Item one
  • Item two
    • Nested item
    • Another nested item
  • Item three

Ordered list:

  1. First
  2. Second
    1. Sub-second
    2. Sub-third
  3. Third

Task list:

  • Write Markdown
  • Test parser
  • Celebrate

A link to Go.

An image:

Test Thumbnail


Blockquote

This is a blockquote.
It can span multiple lines and contain formatting inside.


Code Blocks

Go Example

1package main
2
3import "fmt"
4
5func main() {
6    fmt.Println("Hello from Go code block!")
7}

JSON Example

1{
2  "title": "Example",
3  "valid": true,
4  "items": [1, 2, 3]
5}

Table

Syntax Description Example
**bold** Bold text bold
*italic* Italic text italic
`code` Inline code code

Horizontal Rule


This is text below a horizontal rule.


Escaped Characters

You can escape Markdown symbols with backslashes:
*Not italic*, _not italic_, # not heading.


Paragraphs

This is the first paragraph.

This is the second paragraph, separated by a blank line.


Definition List (if extension enabled)

Term 1
: Definition for term 1

Term 2
: Definition for term 2