commit: eda597ec2ea071efc14af5c929e8c2a842d90509
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 22 14:34:53 2022 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Wed Jun 22 14:34:53 2022 +0000
URL: https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=eda597ec
devbook.xsl: Fix whitespace in <note> and friends
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
devbook.xsl | 8 ++++----
1 file 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>