63 lines
917 B
Markdown
63 lines
917 B
Markdown
# Markdown Guide
|
|
|
|
This blog uses CommonMark for rendering markdown content. Here's a quick guide to the syntax.
|
|
|
|
## Headers
|
|
|
|
Use `#` for headers:
|
|
|
|
```markdown
|
|
# H1
|
|
## H2
|
|
### H3
|
|
```
|
|
|
|
## Emphasis
|
|
|
|
- *Italic* with `*asterisks*`
|
|
- **Bold** with `**double asterisks**`
|
|
- ~~Strikethrough~~ with `~~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:
|
|
|
|
```python
|
|
def hello():
|
|
print("Hello, world!")
|
|
```
|
|
|
|
## Tables
|
|
|
|
| Column 1 | Column 2 | Column 3 |
|
|
|----------|----------|----------|
|
|
| Data 1 | Data 2 | Data 3 |
|
|
| More | Data | Here |
|
|
|
|
## Task Lists
|
|
|
|
- [x] Completed task
|
|
- [ ] Incomplete task
|
|
- [ ] Another task
|
|
|
|
## Horizontal Rule
|
|
|
|
Use three or more hyphens:
|
|
|
|
---
|
|
|
|
That's the basics of Markdown!
|