# QA Test Markdown

A document for exercising **Markdown** renderers.

## Features

- Unordered list item
- `inline code`
- [a link](https://example.test)

1. Ordered item
2. Another

> A blockquote with *emphasis*.

| Column A | Column B |
|----------|----------|
| Widget   | 4        |
| Gadget   | 10       |

```js
// this fenced block must render literally, not as Markdown
const x = "# not a heading";
```
