You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

599 B

Markdown Examples

This page demonstrates some of the built-in markdown extensions provided by VitePress.

Custom Containers

::: info This is an info box. :::

::: tip This is a tip. :::

::: warning This is a warning. :::

::: danger This is a dangerous warning. :::

::: details Click to expand This is a details container. :::

Tables

Header 1 Header 2
Item 1 Item 2

Checklists

  • Item 1
  • Item 2

Customizing Code Blocks

// line 1 is highlighted
const x = 1
const y = 2
// lines 4-5 are highlighted
const z = 3