Extensions
Admonitions

Admonitions

Notes, infos, warnings and dangers

The Admonition extension adds rST-style admonitions to Markdown documents.

Configuration

# mkdocs.yml

markdown_extensions:
  - admonition

Syntax

!!! info "Information:"
    Something **new** is coming to `mkdocs-shadcn`

!!! note "Note:"
    We notice that `x=2`

!!! warning "Warning:"
    There is a *risk* doing `x/0`

!!! danger "Danger:"
    Don't look at `node_modules` **please**!

Information:

Something new is coming to mkdocs-shadcn

Note:

We notice that x=2

Warning:

There is a risk doing x/0

Danger:

Don't look at node_modules please!