markdown-tui-explorer 0.2.0

A terminal-based markdown file browser and viewer with search, syntax highlighting, and live reload
# 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

| Feature | Status |
|---------|--------|
| 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*