<!-- ==================================================================== -->
<xsl:template match="caution|important|note|tip|warning">
- <xsl:call-template name="nested-section-title"/>
+ <xsl:call-template name="roff-if-start">
+ <xsl:with-param name="condition">n</xsl:with-param>
+ </xsl:call-template>
+ <xsl:call-template name="roff-if-end"/>
+ <xsl:text>.RS 4 </xsl:text>
+ <xsl:text>.BM yellow </xsl:text>
+ <xsl:text>.PP </xsl:text>
+ <xsl:text>.sp -1 </xsl:text>
+ <xsl:text>.ps +1 </xsl:text>
+ <xsl:call-template name="make.bold.title"/>
+ <xsl:text> </xsl:text>
<xsl:apply-templates/>
<xsl:text> </xsl:text>
+ <xsl:text>.sp .5v </xsl:text>
+ <xsl:text>.EM yellow </xsl:text>
+ <xsl:text>.RE -4n </xsl:text>
+ <xsl:text>.sp .5v </xsl:text>
</xsl:template>
<xsl:template match="formalpara">
<xsl:when test="self::literallayout|self::programlisting|self::screen">
<!-- * if this is a literallayout|programlisting|screen, then we -->
<!-- * put a background behind it in non-TTY output -->
- <xsl:text>.BB </xsl:text>
+ <xsl:text>.BB lightgray </xsl:text>
<xsl:apply-templates/>
<xsl:text> </xsl:text>
- <xsl:text>.EB </xsl:text>
+ <xsl:text>.EB lightgray </xsl:text>
</xsl:when>
<xsl:otherwise>
<!-- * otherwise this is not a literallayout|programlisting|screen, -->