← Back to Home

AiToWords Conversion Samples

These examples show the kinds of AI-generated Markdown that users most often need to deliver as editable Word documents. Use them as a checklist before exporting long reports, academic notes, or technical documentation.

1. Formula-Heavy Notes

## Gradient Descent
For a parameter vector $\theta$, the update rule is:

$$
\theta_{t+1} = \theta_t - \eta \nabla_\theta J(\theta)
$$

Check whether inline formulas and display formulas remain editable in Word.

2. Technical Code Blocks

```js
function convert(markdown) {
  return renderWordDocument(markdown, {
    preserveCodeBlocks: true,
    preserveHeadingStyle: true
  });
}
```

3. Wide Markdown Tables

| Metric | Input | Export Check | Suggested Fix |
| --- | --- | --- | --- |
| Columns | 8+ columns | Check page width | Split the table if needed |
| Long text | Multiple sentences | Check wrapping | Shorten labels before export |

4. Delivery Checklist

- [ ] Heading levels are correct
- [ ] Tables are readable
- [ ] Formulas render correctly
- [ ] Code blocks stay separated
- [ ] Sensitive content was reviewed before sharing