yamth 0.1.1

Yet Another Markdown To HTML, A fast Markdown to HTML converter with live reload
# My Test Document


## Introduction


This is a paragraph with **bold text** and *italic text* and also `inline code`.

## Lists


- First item
- Second item
- Third item

1. First ordered item
2. Second ordered item
3. Third ordered item

## Links and Rules


Here is a [link to Google](https://www.google.com)

---

## Code Block

```python
def hello():
    print("Hello, World!")
```

## Another Section


### A Subsection


This is another paragraph to test that **bold** and *italic* can appear
in the same line together.