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.


And we can have tables:

SyntaxDescription
HeaderTitle
ParagraphText
SomethingAnd wow
I don't knowAnd huh

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.

> [!NOTE]
> This is a note.

::: 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.

Note

This is a note.

Details

This is a details block.

Other Elements

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

Small Text

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

Input

html
<small>Something Small</small>

Output

Something Small

Progress Bar

You can add a progress bar by using the <progress> tag:

Input

html
<progress value="50" max="100"></progress>

Output

Sample Output (<samp>)

You can add a sample output by using the <samp> tag:

Input

html
<samp>Sample Output</samp>

Output

Sample Output

Legend

You can add a legend by using the <legend> tag:

Input

html
<legend>Legend</legend>

Output

Legend

Inline Quote (<q>)

You can add an inline quote by using the <q> tag:

Input

html
<q>Inline Quote</q>

Output

Inline Quote

Grammar Mistakes (<u>)

You can add a text that tries to replicate grammar mistakes by using the <u> tag:

Input

html
<u>Trying to replicate grammar mistakes</u>

Output

Trying to replicate grammar mistakes

Deleted Text (<del>) & Inserted Text (<ins>)

You can add deleted text by using the <del> tag:

Input

html
<del>Deleted Text</del> <ins>Inserted Text</ins>

Output

Deleted Text Inserted Text

Keyboard Input (<kbd>)

You can add keyboard input by using the <kbd> tag:

Input

html
<kbd>⌘ Super</kbd> + <kbd>Space</kbd>

Output

⌘ Super + Space

Marked Text (<mark>)

You can add marked text by using the <mark> tag:

Input

html
<mark>Marked Text</mark>

Output

Marked Text

Check Box ([ ])

Note

This will only work if you have the markdown-it-checkbox plugin enabled. It will come by deafult with Aplós in v2.2.0.

You can add a check box by using the [ ] tag:


↑ Go to topFile an issue