Skip to main content

Demo

Heads Up!

If you want to see the blog demo, you can see it here

Lorem ipsum dolor sit amet consectetur adipisicing elit. Nemo labore aperiam, asperiores doloribus earum qui id harum neque modi nostrum similique. Rerum consequatur ab eaque velit consequuntur blanditiis praesentium commodi.

Ullus investigandi veri, nisi inveneris, et quaerendi defatigatio turpis est, cum esset accusata et vituperata ab Hortensio. Qui liber cum et mortem contemnit, qua qui est imbutus quietus esse numquam potest. Praeterea bona praeterita.

Ullus investigandi veri, nisi inveneris, et quaerendi defatigatio turpis est, cum esset accusata et vituperata ab Hortensio. Qui liber cum et mortem contemnit, qua qui est imbutus quietus esse numquam potest. Praeterea bona praeterita grata recordatione renovata delectant. Est autem situm in nobis ut et voluptates et dolores nasci fatemur e corporis voluptatibus et doloribus -- itaque concedo, quod modo dicebas, cadere causa, si qui incurrunt, numquam vim tantam.

Header 2

Header 3

  • Item 1
  • Item 2
  • Item 3
  • Item 4

Header 4

Header 5
Header 6

“Simplicity is the ultimate sophistication.”

— Leonardo da Vinci

Syntax Highlighting

VitePress provides Syntax Highlighting powered by Shiki, with additional features like line-highlighting:

Input

md
```js{4}
export default {
  data () {
    return {
      msg: 'Highlighted!'
    }
  }
}
```

Output

js
export default {
  data () {
    return {
      msg: 'Highlighted!'
    }
  }
}

Photo & Video

A herd of sheep grazing on a lush green field

A herd of sheep grazing on a lush green field

To write a caption to a photo use the figcaption tag:

html
<figcaption>Wow</figcaption>

An "interactive example" of a video called flower.webm from the MDN Docs

Text can be bold, italic, or strikethrough.

Also we have Links

We also have lines.


Information boxes

Aplus has various types of information boxes.

  • The info box provides general information.
  • The tip box provides helpful tips.
  • The warning box indicates potential issues or concerns.
  • The danger box warns about dangerous situations.
  • The details block provides additional details or explanations.

All of them can be applied using the following formula:

md
::: name-of-the-box (info, tip, warning, danger, details)
The message you want to share
:::

Input

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

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

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

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

::: details
This is a details block.
:::

Output

Info

This is an info box.

Tip

This is a tip.

Warning

This is a warning.

Danger

This is a dangerous warning.

Details

This is a details block.

⌘ Super + Space

Use this when something is really important

Table

SyntaxDescription
HeaderTitle
ParagraphText
SomethingAnd wow
I don't knowAnd huh

Small Text

You can add small text by using the <small> tag.

Input

html
<small>Something Small</small>

Output

Something Small

Time

You can show a specific time by using the <time> tag:

Input

html
<time>10:00</time>

Output

Time Animation

You also can have an animation to the time like this one:

Input

md
<time>**11:00**</time>

Output


↑ Go to topFile an issue