then you can use <literal>.</literal> as the regexp.
</para>
- <sect4 id="compress-open-hook-example">
+ <example id="compress-open-hook-example">
<title>Example of open-hook</title>
<screen>open-hook '\.gz$' "gzip -cd '%f' > '%t'"</screen>
to create a temporary file that it <emphasis>can</emphasis>
read</para></listitem>
</itemizedlist>
- </sect4>
+ </example>
</sect3>
<sect3 id="close-hook">
</para>
</note>
- <sect4 id="compress-close-hook-example">
+ <example id="compress-close-hook-example">
<title>Example of close-hook</title>
<screen>close-hook '\.gz$' "gzip -c '%t' > '%f'"</screen>
<listitem><para>Mutt uses the command <literal>gzip -c</literal>
to create a new compressed file</para></listitem>
</itemizedlist>
- </sect4>
+ </example>
</sect3>
<sect3 id="append-hook">
</para>
</note>
- <sect4 id="compress-append-hook-example">
+ <example id="compress-append-hook-example">
<title>Example of append-hook</title>
<screen>append-hook '\.gz$' "gzip -c '%t' >> '%f'"</screen>
<listitem><para>Mutt uses the command <literal>gzip -c</literal>
to append to an existing compressed file</para></listitem>
</itemizedlist>
- </sect4>
+ </example>
</sect3>