Headers and text

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

Headings

Use headings to organize your content and make it easier to read.

H1 to H3 headings get anchor links and show up in the table of contents for easy navigation.

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
    }
  }
})
You can control behavior of toc generation in your nuxt.config.ts:
nuxt.config.ts
export default defineNuxtConfig({
  content: {
    build: {
      markdown: {
        toc: {
          depth: 3
        }
      }
    }
  }
})

Heading 1

Nuxt UI

# Nuxt UI

Heading 2

## What's new in v4?

Heading 3

### Enhanced Components

Heading 4

#### Getting Started

Text formatting

Structure your content with clear paragraphs and consistent text formatting for better readability.

Paragraph

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.

Strong

Strong text

**Strong text**

Emphasis

Emphasized text

*Emphasized text*

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.


---