Sometimes you need to make a block of text stand out against the background. DocBook has several elements for such purposes:
note
warning
important
caution
tip
Typically you will put one or more regular paragraphs
(using the para element) inside such
elements. Here's an example:
Do not touch the electric fence!
And here's that warning in source form:
<warning>
<para>
Do not touch the electric fence!
</para>
</warning>