diff options
author | Ulrich Müller <ulm@gentoo.org> | 2023-11-02 18:03:25 +0100 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2023-11-02 18:03:25 +0100 |
commit | 0982277a5ef77bbb91a8c7ef43150c36f78a9a24 (patch) | |
tree | 788520c9d44f077dde945e58eb51dc825de21f9c | |
parent | depend.xsl: Canonicalise output paths (diff) | |
download | devmanual-0982277a5ef77bbb91a8c7ef43150c36f78a9a24.tar.gz devmanual-0982277a5ef77bbb91a8c7ef43150c36f78a9a24.tar.bz2 devmanual-0982277a5ef77bbb91a8c7ef43150c36f78a9a24.zip |
devbook.xsl: Use hexadecimal for character entities
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
-rw-r--r-- | devbook.xsl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/devbook.xsl b/devbook.xsl index ce617d3..fe9c496 100644 --- a/devbook.xsl +++ b/devbook.xsl @@ -269,7 +269,7 @@ </xsl:template> <xsl:template match="d"> - <xsl:text>—</xsl:text> + <xsl:text>—</xsl:text> <!-- em dash --> </xsl:template> <xsl:template match="e"> @@ -587,10 +587,10 @@ <div class="collapse navbar-collapse navbar-main-collapse"> <ul class="nav navbar-nav"> <li> - <a href="{$relative_path_depth_recursion}index.html"><span class="fa fa-home"/> Home</a> + <a href="{$relative_path_depth_recursion}index.html"><span class="fa fa-home"/> Home</a> </li> <li class="dropdown"> - <a href="#" class="dropdown-toggle" data-toggle="dropdown">Index <span class="caret"></span></a> + <a href="#" class="dropdown-toggle" data-toggle="dropdown">Index <span class="caret"></span></a> <xsl:if test="/guide/chapter[1]/section or //contentsTree"> <ul class="dropdown-menu"> <!-- List sections of this chapter first. --> |