Use markup, not quote marks
authorPaul Crowley <paul@lshift.net>
Thu, 15 Oct 2009 12:09:00 +0100
changeset 157 bb53f3b9c411
parent 156 34925ee06f90
child 158 713c6cccbc2f
Use markup, not quote marks
doc/manual.docbook
--- a/doc/manual.docbook	Thu Oct 15 11:56:49 2009 +0100
+++ b/doc/manual.docbook	Thu Oct 15 12:09:00 2009 +0100
@@ -173,7 +173,8 @@
 <programlisting><replaceable>rule</replaceable> <replaceable>condition</replaceable> <replaceable>condition...</replaceable>
 </programlisting>
 <para>
-Blank lines and lines that start with <literal>#</literal> are ignored. Rule is one of
+Blank lines and lines that start with <code>#</code> are ignored. Rule is
+one of
 </para>
 <itemizedlist>
 <listitem>
@@ -202,9 +203,10 @@
 </listitem>
 </itemizedlist>
 <para>
-"*" only matches one directory level, where "**" matches as many as you
-want. More precisely, "*" matches zero or more characters not including "/"
-while "**" matches zero or more characters including "/". So
+<code>*</code> only matches one directory level, where <code>**</code>
+matches as many as you want. More precisely, <code>*</code> matches zero or
+more characters not including <code>/</code> while <code>**</code> matches
+zero or more characters including <code>/</code>. So
 <code>projects/*</code> matches <filename
 class='directory'>projects/foo</filename> but not <filename
 class='directory'>projects/foo/bar</filename>, while