aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2022-06-22 16:34:53 +0200
committerUlrich Müller <ulm@gentoo.org>2022-06-22 16:34:53 +0200
commiteda597ec2ea071efc14af5c929e8c2a842d90509 (patch)
treedf710d255b846a423bf6dac2e78b07869c2e14d8
parentdevbook.rnc: Typo (diff)
downloaddevmanual-eda597ec2ea071efc14af5c929e8c2a842d90509.tar.gz
devmanual-eda597ec2ea071efc14af5c929e8c2a842d90509.tar.bz2
devmanual-eda597ec2ea071efc14af5c929e8c2a842d90509.zip
devbook.xsl: Fix whitespace in <note> and friends
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
-rw-r--r--devbook.xsl8
1 files changed, 4 insertions, 4 deletions
diff --git a/devbook.xsl b/devbook.xsl
index 1aebead..f5b3e72 100644
--- a/devbook.xsl
+++ b/devbook.xsl
@@ -223,28 +223,28 @@
<xsl:template match="note">
<div class="alert alert-info" role="alert">
- <strong>Note:</strong>
+ <strong>Note:</strong><xsl:text> </xsl:text>
<xsl:apply-templates/>
</div>
</xsl:template>
<xsl:template match="important">
<div class="alert alert-warning" role="alert">
- <strong>Important:</strong>
+ <strong>Important:</strong><xsl:text> </xsl:text>
<xsl:apply-templates/>
</div>
</xsl:template>
<xsl:template match="warning">
<div class="alert alert-danger" role="alert">
- <strong>Warning:</strong>
+ <strong>Warning:</strong><xsl:text> </xsl:text>
<xsl:apply-templates/>
</div>
</xsl:template>
<xsl:template match="todo">
<div class="alert alert-info" role="alert">
- <strong>Todo:</strong>
+ <strong>Todo:</strong><xsl:text> </xsl:text>
<xsl:apply-templates/>
</div>
</xsl:template>