# Hello, Markdown!
This is a **standalone** HTML page that renders _Markdown_ on load.
## Features
- Lists like this one
- [Links](https://example.com)
- `inline code`
- And more...
## Code block
```js
function greet(name) {
return `Hello, ${name}!`;
}
```
## Quote
> Markdown makes writing for the web simple.
## Table
| Fruit | Color |
|--------|--------|
| Apple | Red |
| Banana | Yellow |