Headings
Use clear section headings so the right table of contents can expose the page structure.
Section titles create anchors that can be linked from the static TOC on the right side of the docs layout.
## Titles
### SubtitlesText Formatting
Markdown syntax can describe emphasis, inline code, and short UI labels while staying readable in source form.
Bold
**Bold**BoldItalic
*Italic*ItalicInline code
`pnpm dev`pnpm devKeyboard
:kbd{value="K"}KLinks
Links connect docs pages together and point readers to external references when a topic needs deeper explanation.
[Installation](/getting-started/installation)
[Stackhacker UI](https://ui.stackhacker.io)Lists
Use ordered and unordered lists to explain installation steps, concepts, and API details.
- Start with the goal of the page.
- Group related setup steps together.
- Link to follow-up pages instead of overloading one section.
1. Install dependencies
2. Start the dev server
3. Open the docs routeTables
Tables are useful for compact comparisons such as props, defaults, and supported variants.
| Prop | Default | Type |
|---|---|---|
| name | - | string |
| size | md | string |
| disabled | false | boolean |
Blockquotes
Blockquotes help distinguish cited guidance or important prose from surrounding paragraphs.
Documentation should make the next action obvious without forcing readers to understand the whole system first.
