Markdown Cheat Sheet
A quick reference for Markdown syntax supported by Chester.
Text Formatting
| Syntax | Result |
|---|---|
**bold** |
bold |
*italic* |
italic |
~~strikethrough~~ |
|
\inline code`` |
inline code |
Headings
# H1
## H2
### H3
#### H4
Lists
- Unordered item 1
- Unordered item 2
- Nested item
- Ordered item 1
- Ordered item 2
Task Lists
- Completed task
- Incomplete task
- Another task
Code Blocks
def hello(name: str) -> str:
return f"Hello, {name}!"
print(hello("Chester"))
Blockquotes
This is a blockquote. It can span multiple lines.
Links and Images
This document was created as a seed example.