Markdown Style Demo

This is a demo post written in markdown. You can use markdown syntax to write and format your posts.

Headers

# This is an H1
## This is an H2
### This is an H3
#### This is an H4
##### This is an H5
###### This is an H6

Emphasis

**This text will be bold**
__This will also be bold__

This text will be bold
This will also be bold

Lists

Unordered

- Item 1
- Item 2
  - Item 2a
  - Item 2b
  • Item 1
  • Item 2
    • Item 2a
    • Item 2b

Ordered

1. Item 1
2. Item 2
3. Item 3
  1. Item 1
  2. Item 2
  3. Item 3
[GitHub](http://github.com)

GitHub

Images

![Image](https://slefboot-1251736664.file.myqcloud.com/20240808_leveldb_source_bloom_filter_visualization.png/webp1600)

Image

Blockquotes

> This is a blockquote

This is a blockquote

  • This is a list in a blockquote
  • This is another list in a blockquote
  • This is a nested list in a blockquote

This is another nested list in a blockquote

Code

Inline `code`

Inline code is here.

Code Block

def hello():
    print('Hello, World!')

Tables

| Header 1 | Header 2 |
| -------- | -------- |
| Cell 1   | Cell 2   |
| Cell 3   | Cell 4   |

Table:

Header 1 Header 2
Cell 1 Cell 2
Cell 3 Cell 4

Horizontal Rules

---

Lines above and below the horizontal rule will be treated as separate paragraphs.