diff options
author | Bruce Momjian <bruce@momjian.us> | 2024-09-19 12:01:58 -0400 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2024-09-19 12:01:58 -0400 |
commit | 468501b17a3a371ee9337ab8965568e6f76770fb (patch) | |
tree | 347ede43d25996dd83a34c5e5b789543c7186f05 | |
parent | e65b6c012e24259ef195ad3ac41ca5e04298170b (diff) |
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 76d4048f843..52a3aaa3cd4 100644 --- a/doc/src/sgml/stylesheet-fo.xsl +++ b/doc/src/sgml/stylesheet-fo.xsl @@ -16,7 +16,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> |