From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1411064-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id AE47C158094 for <garchives@archives.gentoo.org>; Wed, 22 Jun 2022 14:36:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CE15DE085E; Wed, 22 Jun 2022 14:36:02 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A11CAE085E for <gentoo-commits@lists.gentoo.org>; Wed, 22 Jun 2022 14:36:02 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4AA54341BC4 for <gentoo-commits@lists.gentoo.org>; Wed, 22 Jun 2022 14:36:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E07ED50C for <gentoo-commits@lists.gentoo.org>; Wed, 22 Jun 2022 14:35:59 +0000 (UTC) From: "Ulrich Müller" <ulm@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" <ulm@gentoo.org> Message-ID: <1655908493.eda597ec2ea071efc14af5c929e8c2a842d90509.ulm@gentoo> Subject: [gentoo-commits] proj/devmanual:master commit in: / X-VCS-Repository: proj/devmanual X-VCS-Files: devbook.xsl X-VCS-Directories: / X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: eda597ec2ea071efc14af5c929e8c2a842d90509 X-VCS-Branch: master Date: Wed, 22 Jun 2022 14:35:59 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 8960a6b8-3b23-4544-9412-e41956fd985d X-Archives-Hash: c1b8f99d6504169df336d781d7ad3d7f 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>