f06e866917
Change-Id: Idac1e6c049438819d5c363b694102c22d67fa19b Implements: blueprint contributor-guide-reorg
1.2 KiB
1.2 KiB
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.
Here is the example of the note directive usage; these can be applied to all the admonition directives described above.
Input
.. note::
This is the text of a generic 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,
- ...