Headers and Text

Beautifully styled headings, paragraphs, text formatting, and links for optimal readability.

Headings

Use headings to structure your documentation and help users navigate content.

Headings from H1 to H3 automatically generate anchor links and appear in the table of contents, making navigation easier for your readers.
  • You can control anchor links generation (for example, for AI chat interfaces) in your nuxt.config.ts:
nuxt.config.ts
export default defineNuxtConfig({
  content: {
    renderer: {
      anchorLinks: false
    }
  }
})
nuxt.config.ts
export default defineNuxtConfig({
  content: {
    build: {
      markdown: {
        toc: {
          depth: 3
        }
      }
    }
  }
})

Main Heading (h1)

The primary title for your page or section. Typically used once per page.

Nuxt UI

# Nuxt UI

Section Heading (h2)

Secondary headings that divide your content into major sections.

## What's new in v4?

Subsection Heading (h3)

Subsection headings for organizing content within major sections.

### Enhanced Components

Minor Heading (h4)

Minor headings for detailed organization within subsections.

#### Getting Started

Paragraphs

Standard paragraph text with proper spacing and line height for optimal readability.

Nuxt UI provides a comprehensive collection of Vue components, composables and utilities for building modern, accessible applications with consistent design and enhanced user experience.

Nuxt UI provides a comprehensive collection of Vue components, composables and utilities for building modern, accessible applications with consistent design and enhanced user experience.

To create a link, wrap the link text in brackets followed by the URL in parentheses. Works for both external and internal links.

[Nuxt documentation](https://nuxt.com)

Blockquotes

Use blockquotes to highlight important information or quotes.

Nuxt UI automatically adapts to your theme settings, ensuring consistent typography across your entire application.

> Nuxt UI automatically adapts to your theme settings, ensuring consistent typography across your entire application.

Horizontal Rules

Use horizontal rules to visually separate content sections.


---