doc: removed some unnecessary nested listing from doxygen output
authorBill Spitzak <spitzak@gmail.com>
Wed, 12 Nov 2014 02:42:58 +0000 (18:42 -0800)
committerPekka Paalanen <pekka.paalanen@collabora.co.uk>
Tue, 25 Nov 2014 14:25:22 +0000 (16:25 +0200)
This makes the lists of parameters slightly smaller and removes some
bullets from see-also and since.

doc/publican/doxygen-to-publican.xsl

index 461cf3e..d8f3289 100644 (file)
@@ -45,9 +45,7 @@
           <xsl:apply-templates select="parameternamelist/parametername"/>
         </term>
       <listitem>
-        <para>
-          <xsl:apply-templates select="parameterdescription/para"/>
-        </para>
+        <xsl:apply-templates select="parameterdescription"/>
       </listitem>
     </varlistentry>
 </xsl:template>
     <varlistentry>
       <term>Returns:</term>
       <listitem>
-        <para>
-          <xsl:apply-templates />
-        </para>
+        <xsl:apply-templates />
       </listitem>
     </varlistentry>
   </variablelist>
 </xsl:template>
 
 <xsl:template match="simplesect[@kind='see']">
-  <itemizedlist>
-    <listitem>
-      <para>
-        See also: <xsl:apply-templates />
-      </para>
-    </listitem>
-  </itemizedlist>
+  <para>
+    See also: <xsl:apply-templates />
+  </para>
 </xsl:template>
 
 <xsl:template match="simplesect[@kind='since']">
-  <itemizedlist>
-    <listitem>
-      <para>
-        Since: <xsl:apply-templates />
-      </para>
-    </listitem>
-  </itemizedlist>
+  <para>
+    Since: <xsl:apply-templates />
+  </para>
 </xsl:template>
 
 <xsl:template match="simplesect[@kind='note']">