Hello, The attached patch fixes this.
Best regards, Alexander 22.11.2016 21:47, Tom Lane пишет:
I wrote:I notice that whereas <xref> used to generate text like Section 4.1.2.7 now you get Section 4.1.2.7, “Constants of Other Types”I also find that for some reason, the results are not formatted consistently. Section cross-references are printed with quotes as shown above, but chapter cross-references have no quotes and instead the chapter title is italicized. See for example the various cross-references for GiST about halfway down this page: https://www.postgresql.org/docs/devel/static/indexes-types.html TBH though, the more examples of this I look at, the less convinced I am that it's an improvement at all. We have an awful lot of parenthetical cross-references like "(see Section 1.2.3)", which previously were easy to ignore while reading, but with long section titles attached to them they quite interrupt the sentence flow. I can kind of see the point when printing on dead trees, but in any format where the reference is a hyperlink, I think I'd vote for dropping the title and going back to the old output. regards, tom lane
diff --git a/doc/src/sgml/stylesheet-common.xsl b/doc/src/sgml/stylesheet-common.xsl index c23d38f..9393848 100644 --- a/doc/src/sgml/stylesheet-common.xsl +++ b/doc/src/sgml/stylesheet-common.xsl @@ -37,6 +37,7 @@ <xsl:param name="punct.honorific" select="''"></xsl:param> <xsl:param name="variablelist.term.break.after">1</xsl:param> <xsl:param name="variablelist.term.separator"></xsl:param> +<xsl:param name="xref.with.number.and.title" select="0"></xsl:param> <!-- Change display of some elements -->
-- Sent via pgsql-docs mailing list ([email protected]) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-docs
