commit: 59e2965fe2ed050efa8df115533ebec287b88d12
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 16 13:14:23 2020 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Sun Feb 16 13:14:23 2020 +0000
URL: https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=59e2965f
devbook.xsl: Remove spurious line break in list.
This affects contentsTree with the extraction attribute, which is only
used for the TODO list in the appendix.
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
devbook.xsl | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/devbook.xsl b/devbook.xsl
index a61cae0..7a8af1b 100644
--- a/devbook.xsl
+++ b/devbook.xsl
@@ -420,7 +420,7 @@
<ul>
<xsl:for-each select="document(concat($path, @href,
'text.xml'))//*[name()=$extraction]">
<xsl:variable name="extraction_id" select="position()"/>
- <li><xsl:apply-templates
select="(//*[name()=$extraction])[position()=$extraction_id]"/><br/></li>
+ <li><xsl:apply-templates
select="(//*[name()=$extraction])[position()=$extraction_id]"/></li>
</xsl:for-each>
</ul>
</xsl:if>