# Markdown to Word sample

This file is a fixture for KolmoPDF’s Markdown → Word converter. Upload it on [/markdown-to-word](https://www.kolmopdf.com/markdown-to-word) to see native Heading styles, a Word table, a code block, and rendered math.

## Section heading (Heading 2)

A short paragraph under Heading 2. The `.docx` should put this in the Navigation pane.

### Subsection (Heading 3)

Pipe table:

| Layer | Complexity | Sequential ops |
| :--- | :---: | :---: |
| Self-attention | $O(n^2 \cdot d)$ | $O(1)$ |
| Recurrent | $O(n \cdot d^2)$ | $O(n)$ |

Fenced code:

```python
def attention(q, k, v, d_k):
    scores = (q @ k.T) / (d_k ** 0.5)
    return softmax(scores) @ v
```

Inline math $E = mc^2$ and a display equation:

$$
\mathrm{Attention}(Q, K, V) = \mathrm{softmax}\left(\frac{QK^T}{\sqrt{d_k}}\right)V
$$

- List item one
- List item two

> Blockquote: reviewers should see this as a Word quote style, not a fake indent.
