zudo-doc

Type to search...

to open search from anywhere

Basic Components

CreatedMar 22, 2026Takeshi Takatsudo

Standard Markdown and MDX typography elements available in documentation pages.

These are the standard Markdown and MDX elements styled through zudo-doc’s design token system. No imports are needed.

Headings

Headings from h2 to h4 appear in the table of contents sidebar.

Heading 3

Heading 4

## Heading 2
### Heading 3
#### Heading 4

Text Formatting

Bold text, italic text, and strikethrough. Combine them: bold and italic.

**Bold text**, *italic text*, and ~~strikethrough~~.
Combine them: ***bold and italic***.

Inline Code

Use backticks to mark inline code within a sentence.

Use backticks to mark `inline code` within a sentence.

Code Blocks

Fenced code blocks support syntax highlighting via Shiki. Specify the language after the opening backticks.

function greet(name: string): string {
  return `Hello, ${name}!`;
}
```ts
function greet(name: string): string {
  return `Hello, ${name}!`;
}
```

Supported Languages

Shiki supports a wide range of languages. Common ones include:

LanguageIdentifier
TypeScriptts, typescript
JavaScriptjs, javascript
HTMLhtml
CSScss
JSONjson
Bash / Shellbash, sh, shell, zsh
Markdownmd, markdown
MDXmdx
YAMLyaml, yml
Pythonpython, py
Rustrust, rs
Gogo
SQLsql
GraphQLgraphql
Diffdiff
TOMLtoml
Astroastro
JSX / TSXjsx, tsx

See the full list of supported languages for all available identifiers.

Unordered Lists

  • First item
  • Second item
    • Nested item
    • Another nested item
      • Deeply nested
  • Third item
- First item
- Second item
  - Nested item
  - Another nested item
    - Deeply nested
- Third item

Ordered Lists

  1. First step
  2. Second step
  3. Sub-step one
  4. Sub-step two
  5. Third step
1. First step
2. Second step
   1. Sub-step one
   2. Sub-step two
3. Third step

Blockquotes

This is a blockquote. It can span multiple lines and supports formatting within it.

> This is a blockquote. It can span multiple lines
> and supports **formatting** within it.

Tables

FeatureStatusNotes
MDXSupportedVia @astrojs/mdx
ShikiBuilt-inCode highlighting
Tailwindv4Token-based design
| Feature    | Status      | Notes              |
| ---------- | ----------- | ------------------ |
| MDX        | Supported   | Via `@astrojs/mdx` |
| Shiki      | Built-in    | Code highlighting  |
| Tailwind   | v4          | Token-based design |

Internal link: Getting Started

External link: Astro documentation

Internal link: [Getting Started](/docs/getting-started)

External link: [Astro documentation](https://docs.astro.build)

Horizontal Rules

Use three dashes to create a horizontal rule:


---

Revision History

AI Assistant

Ask a question about the documentation.