markdown-reader 0.1.26

A simple markdown reader that uses ratatui to render markdown files.
# Markdown Reader

This is a test file to check that how markdown renders

## Heading 2

### Heading 3

#### Heading 4

##### Heading 5

###### Heading 6

## Emphasis

This text will be *italic*  

This text will be **bold**  

*You **can** combine them*

This is a ~~complicated~~ *very simple* example.

## Lists

### Unordered

- Item 1
- Item 2
  - Item 2a
  - Item 2b

### Ordered

1. Item 1
2. Item 2
3. Item 3
    1. Item 3a
    2. Item 3b

## Block Quotes

> A blockquote

After the quote

> Multiline
> quote

After the quote

> Multi paragraph
>
> quote

After the quote

> Multi indent
>
>> quote

```plain
plain
code
```

```rust
fn rust_code() {
  println!("hello world");
}
```