Titles and Headings
Use titles to introduce main sections. They structure your documentation and help users navigate content.Each title and subtitle creates an anchor and shows up automatically in the table of contents.
Text Formatting
Docus supports most Markdown formatting options for rich text styling.- Basic Formatting
- Combined Formatting
| Style | Syntax | Result |
|---|---|---|
| Bold | **bold** | Bold |
| Italic | *italic* | Italic |
| Strike | ~~strike~~ |
Links
Links connect different parts of your documentation and external resources, essential for user navigation and providing references.External Links
To create a link, wrap the link text in brackets followed by the URL in parentheses:Internal Links
For linking within your documentation, use root-relative paths:Lists
Organize related items in a structured, readable format. Markdown supports unordered, ordered, and nested lists.Unordered Lists
Use unordered lists for items without a specific sequence. Start each item with a- symbol:
- First list item
- Second list item
- Third list item
Ordered Lists
Use ordered lists when item order matters, like steps in a process:- First step
- Second step
- Third step
Nested Lists
Create hierarchical lists with sub-items for complex structures. Indent sub-items by two or four spaces:- Main item
- Nested item
- Another nested item
- Another main item
- Nested under second item
Tables
Present structured data in rows and columns clearly. Tables are ideal for comparing data or listing properties.| Prop | Default | Type |
|---|---|---|
name | string | |
size | md | string |
color | neutral | string |
Blockquotes
Highlight important quotations, citations, or emphasized text. Blockquotes visually distinguish quoted content.Single-line Blockquotes
Add a> in front of a paragraph for short, impactful quotes:
Docus is a fully integrated documentation solution built with Nuxt UI.
Multi-line Blockquotes
For longer quotes with multiple paragraphs:Docus is a fully integrated documentation solution built with Nuxt UI. Create beautiful, responsive, and accessible documentation sites with ease.
Horizontal Rules
Separate content sections with horizontal rules:Inline Code
Reference code elements within text using backticks:config.ts file to configure your app.
For multi-line code examples, see the Code Blocks page.