123456789101112131415# Heading 1 ## Heading 2 ### Heading 3 Regular paragraph text with **bold**, *italic*, and `inline code`. - Bullet list - Another item 1. Numbered list 2. Second item > Blockquote text [Link text](https://example.com)
123456789101112<Note> This is a note callout. No import needed. </Note> <Steps> <Step title="First step"> Do this first. </Step> <Step title="Second step"> Then do this. </Step> </Steps>
1234| Method | Path | Description | |--------|------|-------------| | GET | /users | List users | | POST | /users | Create user |
##, ###, etc.) automatically appears in the right-side table of contents. The # heading is used as the page title.1234567<!-- ✅ Correct --> <Note> Use `Note` for neutral information. </Note> <!-- ❌ Wrong — text won't get proper paragraph styling --> <Note>Use `Note` for neutral information.</Note>