From 9b9f4f1a376958f9d724c0834c7d5caef5d1a440 Mon Sep 17 00:00:00 2001
From: Ileana Dumitrescu <ileanadumi95@protonmail.com>
Date: Tue, 17 Jan 2023 15:01:56 +0200
Subject: [PATCH] correct apos in manpages

Patch content taken from https://chromium.googlesource.com/external/github.com/git/git/+/HEAD/Documentation/manpage-quote-apos.xsl

---
 docs/docbook/bb-man.xsl | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/docs/docbook/bb-man.xsl b/docs/docbook/bb-man.xsl
index 0f9e5c75..4cd5047f 100644
--- a/docs/docbook/bb-man.xsl
+++ b/docs/docbook/bb-man.xsl
@@ -6,4 +6,13 @@
 
 <xsl:param name="chunk.section.depth" select="'0'"/>
 
+<xsl:template name="escape.apostrophe">
+  <xsl:param name="content"/>
+  <xsl:call-template name="string.subst">
+    <xsl:with-param name="string" select="$content"/>
+    <xsl:with-param name="target">'</xsl:with-param>
+    <xsl:with-param name="replacement">\(aq</xsl:with-param>
+  </xsl:call-template>
+</xsl:template>
+
 </xsl:stylesheet>
-- 
2.37.2

