summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2024-09-19 18:05:21 -0400
committerBruce Momjian <bruce@momjian.us>2024-09-19 18:05:21 -0400
commit940bcf80aa76a5f1e65b34d1db638f2079a07d84 (patch)
tree8ff49248eba472918295be9de99bb6c209bc6880
parent468501b17a3a371ee9337ab8965568e6f76770fb (diff)
doc PG relnotes: remove warning about commit links in PDF build
Make paragraph empty instead of removing it. Discussion: https://postgr.es/m/2029579.1726779139@sss.pgh.pa.us Backpatch-through: 12
-rw-r--r--doc/src/sgml/stylesheet-fo.xsl8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/src/sgml/stylesheet-fo.xsl b/doc/src/sgml/stylesheet-fo.xsl
index 52a3aaa3cd4..19f54daaa8f 100644
--- a/doc/src/sgml/stylesheet-fo.xsl
+++ b/doc/src/sgml/stylesheet-fo.xsl
@@ -18,11 +18,11 @@
<!--
Suppress the description of the commit link markers in print mode.
-Caues an "Unresolved ID reference found" warning during PDF builds
-because the paragraph is suppressed in the output.
+Use "node()" to keep the paragraph but remove all content; prevents
+an "Unresolved ID reference found" warning during PDF builds.
-->
-<xsl:template match="appendix[@id='release']//para[@id='release-commit-links']">
- <!-- Output nothing for this para -->
+<xsl:template match="appendix[@id='release']//para[@id='release-commit-links']//node()">
+ <!-- Output an empty para -->
</xsl:template>
<xsl:param name="use.extensions" select="1"></xsl:param>