Markdown Cheat Sheet

Markdown Cheat Sheet

A quick reference for Markdown syntax supported by Chester.

Text Formatting

Syntax Result
**bold** bold
*italic* italic
~~strikethrough~~ strikethrough
\inline code`` inline code

Headings

# H1
## H2
### H3
#### H4

Lists

  1. Ordered item 1
  2. Ordered item 2

Task Lists

Code Blocks

def hello(name: str) -> str:
    return f"Hello, {name}!"

print(hello("Chester"))

Blockquotes

This is a blockquote. It can span multiple lines.

Visit Chester


This document was created as a seed example.