# Admonitions

At ScyllaDB, we limit the admonitions. Although restructuredText will allow for more, use the following:

* [Note]()
* [Caution]()
* [Warning]()
* [Tip]()

## Note

Use a note to point out something to the reader. This action does not have any risk.

```rst
.. note:: text follows here
```

Renders as:

#### NOTE
text follows here

## Caution

Use caution if there is any potential risk to data loss or lower performance.

```rst
.. caution:: look out
```

Renders as

## Warning

Use warning if there is any potential risk to total data loss or physical danger.

```rst
.. warning:: take care
```

Renders as:

#### WARNING
take care

## Tip

This is a time-saving or performance enhancing option.

```rst
.. tip:: here's a tip
```

Renders as:
