How to add fenced code blocks with language labels and inline code before exporting to Word/PDF.

Inline Code

Use backticks for short snippets: `npm install`.

Fenced Code Blocks

```python
def hello(name: str) -> str:
    return f"Hello, {name}"
```

Language Hints

Specify the language for better syntax highlighting and export fidelity:

```bash
pip install -r requirements.txt
```

Multiline Output Blocks

```text
Conversion started...
Finished: sample.docx
```

Tips for Better Exports