markdown-reader 0.1.27

A simple markdown reader that uses ratatui to render markdown files.
---
tags:
  - demo
  - renderer
---

# 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.

## Super/Subscript

H^2^O and H ~2~ O

## 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

## Rule

---

```plain
plain
code
```

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

- aaaa
- aaaa

**ddd**, ~xxx~

- [ ] ddd
- [x] ddd