Admonitions

open by default

you can open a details tab with '+'


???+ note open by default
    you can open a details tab with '+'

Important

inside of admonitions need four leading spaces.

closed by default

you can open a details tab with '+'


??? note closed by default
    you can open a details tab with '+'

all of the admonitions

Note

a note


!!! note
    a note

Abstract

an abstract


!!! abstract
    an abstract

Info

admonitions


!!! info
    admonitions

Tip

You should think about using admonitions


!!! tip
    You should think about using admonitions

Success

Run Successful!


!!! success
    Run Successful!

Question

What do you think of this?


!!! question
    What do you think of this?

Source

Add some source code.


print('hello world')

!!! source
    Add some source code.
    ```python
    print('hello world')