Specific information blocks¶
Use special markups to emphasize specific information within your document. Depending on specific semantic meaning of the message, you can use:
note - for a message of generic meaning.
warning or important - includes details that can be easily missed, but should not be ignored by a user and are valuable before proceeding.
caution - delivers information that prevents a user from mistakes and undesirable consequences when following the procedures.
tip or seealso - wraps extra but helpful information.
Input
.. note::
This is the text of a note admonition.
This line is the continuation of the first line.
A note may contain bulleted or enumerated lists,
as well as code blocks:
* First option,
* ...
Output
Note
This is the text of a note admonition. This line is the continuation of the first line.
A note may contain bulleted or enumerated lists, as well as code blocks:
First option,
…
Input
.. warning::
This is the text of a warning admonition.
This line is the continuation of the first line.
Output
Warning
This is the text of a warning admonition. This line is the continuation of the first line.
Input
.. important::
This is the text of a important admonition.
This line is the continuation of the first line.
Output
Important
This is the text of a important admonition. This line is the continuation of the first line.
Input
.. caution::
This is the text of a caution admonition.
This line is the continuation of the first line.
Output
Caution
This is the text of a caution admonition. This line is the continuation of the first line.
Input
.. tip::
This is the text of a tip admonition.
This line is the continuation of the first line.
Output
Tip
This is the text of a tip admonition. This line is the continuation of the first line.
Input
.. seealso::
This is the text of a seealso admonition.
This line is the continuation of the first line.
Output
See also
This is the text of a seealso admonition. This line is the continuation of the first line.
This documentation, is a derivative of RST conventions by OpenStack, used under CC BY.