Files
narlblog/data/posts/another-post.md
T

27 lines
466 B
Markdown

---
date: 2026-05-09
summary: Markdown smoke test — bold, italic, links, blockquotes, fenced code.
tags:
- meta
draft: false
---
# My Second Blog Post
Adding some more content to test the layout and the glassy look!
### Markdown Testing
- **Bold text**
- *Italic text*
- [A link to GitHub](https://github.com)
> "The only way to do great work is to love what you do." - Steve Jobs
```rust
fn main() {
println!("Hello from Rust!");
}
```
Enjoy reading!