md_reader 0.2.2

A fast, native markdown reader and editor with live preview, syntax highlighting, and multi-file support.
# Heading 1

## Heading 2

### Heading 3

#### Heading 4

##### Heading 5

###### Heading 6

This is a paragraph with some **bold text** and *italic text* and `inline code`. Here's a [link to example.com](https://example.com). Footnotes are also supported[^1] and can appear multiple times[^2].

## Code Block

```rust
fn main() {
    println!("Hello, world!");
}
```

## Table

| Header 1 | Header 2 | Header 3 |
|----------|----------|----------|
| Row 1    | Data 1   | Data 2   |
| Row 2    | Data 3   | Data 4   |
| Row 3    | Data 5   | Data 6   |

## List

- Item 1
- Item 2
  - Nested item 1
  - Nested item 2
- Item 3

1. Ordered item 1
    - Unordered 1
    - Unordered 2
2. Ordered item 2
3. Ordered item 3

## Blockquote

> This is a blockquote with some text that should be italicized and have a left border.

## Horizontal Rule

---

## Mixed Content

Here's a paragraph followed by a code block:

```python
def hello():
    print("Hello from Python!")
```

And here's another paragraph with a [relative link](./some/file.md) and some **bold** and *italic* text.

## The End

This document demonstrates all the markdown features with the new UI improvements.

[^1]: This is the first footnote. It can contain **bold**, *italic*, and `inline code`.
[^2]: This is the second footnote, demonstrating that multiple footnotes work correctly.