51 lines
547 B
Markdown
51 lines
547 B
Markdown
# Heading 1
|
|
|
|
## Heading 2
|
|
|
|
This is a paragraph with **bold text** and *italic text* and `inline code`.
|
|
|
|
### Lists
|
|
|
|
- Item one
|
|
- Item two
|
|
- Item three
|
|
|
|
1. First
|
|
2. Second
|
|
3. Third
|
|
|
|
### Code Block
|
|
|
|
```go
|
|
func main() {
|
|
fmt.Println("Hello, world!")
|
|
}
|
|
```
|
|
|
|
### Blockquote
|
|
|
|
> This is a blockquote
|
|
> with multiple lines.
|
|
|
|
### Links
|
|
|
|
Visit [Example](https://example.com) for more info.
|
|
|
|
---
|
|
|
|
### Table
|
|
|
|
| Name | Age |
|
|
|------|-----|
|
|
| Alice | 30 |
|
|
| Bob | 25 |
|
|
|
|
### Task List
|
|
|
|
- [x] Done
|
|
- [ ] Not done
|
|
|
|
~~strikethrough text~~
|
|
|
|

|