]> granicus.if.org Git - mutt/commitdiff
Change compress examples to type "example" rather than "sect4".
authorKevin McCarthy <kevin@8t8.us>
Sun, 2 Sep 2018 21:43:04 +0000 (14:43 -0700)
committerKevin McCarthy <kevin@8t8.us>
Sun, 2 Sep 2018 21:43:04 +0000 (14:43 -0700)
doc/manual.xml.head

index 24c4146f8ca23c65c343109d550124fa6262604b..bb27d8b7d0f75d139cccf96291cb8d7a599ae0ac 100644 (file)
@@ -8927,7 +8927,7 @@ please have a look at the mixmaster documentation.
         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$' &quot;gzip -cd '%f' &gt; '%t'&quot;</screen>
@@ -8942,7 +8942,7 @@ please have a look at the mixmaster documentation.
               to create a temporary file that it <emphasis>can</emphasis>
               read</para></listitem>
         </itemizedlist>
-      </sect4>
+      </example>
     </sect3>
 
     <sect3 id="close-hook">
@@ -8963,7 +8963,7 @@ please have a look at the mixmaster documentation.
         </para>
       </note>
 
-      <sect4 id="compress-close-hook-example">
+      <example id="compress-close-hook-example">
         <title>Example of close-hook</title>
 
         <screen>close-hook '\.gz$' &quot;gzip -c '%t' &gt; '%f'&quot;</screen>
@@ -8977,7 +8977,7 @@ please have a look at the mixmaster documentation.
           <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">
@@ -9016,7 +9016,7 @@ please have a look at the mixmaster documentation.
         </para>
       </note>
 
-      <sect4 id="compress-append-hook-example">
+      <example id="compress-append-hook-example">
         <title>Example of append-hook</title>
 
         <screen>append-hook '\.gz$' &quot;gzip -c '%t' &gt;&gt; '%f'&quot;</screen>
@@ -9031,7 +9031,7 @@ please have a look at the mixmaster documentation.
           <listitem><para>Mutt uses the command <literal>gzip -c</literal>
               to append to an existing compressed file</para></listitem>
         </itemizedlist>
-      </sect4>
+      </example>
 
     </sect3>