# Markdown Rendering Test

Use this file to test headings, **bold text**, _emphasis_, links, tables, lists, code, and Mermaid diagrams.

## Checklist

- [x] Headings and paragraphs
- [x] Tables and links
- [ ] Add your own test case

| Feature | Example |
| --- | --- |
| Code | `const answer = 42` |
| Link | [RenderMD](https://www.rendermd.link/) |

```js
function greet(name) {
  return `Hello, ${name}!`;
}
```

```mermaid
graph TD
  A[Write Markdown] --> B[Preview]
  B --> C[Share or export]
```

> Add unusual characters, long lines, and nested lists here to test a renderer.
