# Welcome to Markdown Reader
This is a **sample markdown file** to test the TUI viewer.
## Features
- Left panel with file tree navigation
- Right panel with rendered markdown
- *Fuzzy search* for file names and content
- Live file watching for automatic reloads
## Code Example
```rust
fn main() {
println!("Hello, markdown reader!");
}
```
## Blockquote
> This is a blockquote that demonstrates
> how the renderer handles quoted text.
## Table
| File Tree | Done |
| Markdown Render | Done |
| Search | Done |
| File Watch | Done |
## Links
Check out [Ratatui](https://ratatui.rs) for more TUI examples.
---
*End of sample document*