917 B
917 B
Markdown Guide
This blog uses CommonMark for rendering markdown content. Here's a quick guide to the syntax.
Headers
Use # for headers:
# H1
## H2
### H3
Emphasis
- Italic with
*asterisks* - Bold with
**double asterisks** Strikethroughwith~~tildes~~
Links and Images
Links: [Link text](https://example.com)
Images: 
Blockquotes
This is a blockquote. It can span multiple lines.
Code
Inline code with backticks.
Code blocks with triple backticks:
def hello():
print("Hello, world!")
Tables
| Column 1 | Column 2 | Column 3 |
|---|---|---|
| Data 1 | Data 2 | Data 3 |
| More | Data | Here |
Task Lists
- Completed task
- Incomplete task
- Another task
Horizontal Rule
Use three or more hyphens:
That's the basics of Markdown!