Markdown Syntax
Text, title, and styling in standard markdown.
Titles
Use titles to introduce main sections. They structure your documentation and help users navigate content.
## Titles
Subtitles
Use subtitles to divide sections further. They create a more detailed content hierarchy for better readability.
### Subtitles
Each title and subtitle creates an anchor and shows up automatically in the table of contents.
Text Formatting
Nuxt UI supports most Markdown formatting options.
| Style | How to use | Result |
|---|---|---|
| Bold | **bold** | Bold |
| Italic | *italic* | Italic |
| Strike | ~~strike~~ |
Combine formatting for richer text styles and visual emphasis.
| Style | How to use | Result |
|---|---|---|
| Bold Italic | **_bold italic_** | Bold Italic |
| Bold Strike | ~~**bold**~~ | |
| Italic Strike | ~~*italic*~~ |
For exponents, indices, or mathematical notations, use HTML <sup> and <sub> tags.
| Style | How to use | Result |
|---|---|---|
| Superscript | <sup>superscript</sup> | superscript |
| Subscript | <sub>subscript</sub> | subscript |
Links
Links connect different parts of your documentation and external resources, essential for user navigation and providing references.
To create a link, wrap the link text in brackets []().
