2026-06-09 19:58:07 +08:00

46 lines
837 B
Markdown

# Document Title (h1)
Introduction paragraph with **bold** and *italic* text. This is the first paragraph of the document.
## Section One (h2)
This section contains a code block with language info.
```rust
fn main() {
println!("Hello, world!");
}
```
### Subsection (h3)
- Unordered item 1
- Unordered item 2
- Unordered item 3
1. Ordered item 1
2. Ordered item 2
3. Ordered item 3
## Section Two — Tables & Quotes
| Name | Age | City |
|------|-----|------|
| Alice | 30 | NYC |
| Bob | 25 | LA |
| Carol | 28 | SF |
> This is a blockquote with some wisdom: "The only way to do great work is to love what you do."
## Section Three — Images & Rules
![Rust Logo](https://www.rust-lang.org/logos/rust-logo-512x512.png)
---
### Final Section
Final paragraph with `inline code` and a [link](https://example.com).
---