diff options
author | Bruce Momjian <bruce@momjian.us> | 2024-09-19 12:01:59 -0400 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2024-09-19 12:01:59 -0400 |
commit | c6b1506f71324d0bacfab17c6688e8fc2a79b1dc (patch) | |
tree | c81b5838ba33bc65a3bd5dfb0818b63fb1e2a706 | |
parent | 25f8cf19ab3a0246ef252203410b84169124eaaf (diff) | |
download | postgresql-c6b1506f71324d0bacfab17c6688e8fc2a79b1dc.tar.gz postgresql-c6b1506f71324d0bacfab17c6688e8fc2a79b1dc.zip |
doc PG relnotes: document "Unresolved ID reference found" cause
Backpatch-through: 12
-rw-r--r-- | doc/src/sgml/stylesheet-fo.xsl | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/doc/src/sgml/stylesheet-fo.xsl b/doc/src/sgml/stylesheet-fo.xsl index 6015c70d9f8..bb22a92d0af 100644 --- a/doc/src/sgml/stylesheet-fo.xsl +++ b/doc/src/sgml/stylesheet-fo.xsl @@ -20,7 +20,11 @@ <!-- Do nothing for ulink to avoid footnotes --> </xsl:template> -<!-- Also suppress the description of the section markers in print mode --> +<!-- +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. +--> <xsl:template match="appendix[@id='release']//para[@id='release-commit-links']"> <!-- Output nothing for this para --> </xsl:template> |