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

Heading 2

Heading 3

Heading 4

Text formatting

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

Paragraph

Strong

Emphasis

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

Blockquotes

Use blockquotes to highlight important information or quotes.

Horizontal rules

Use horizontal rules to visually separate content sections.