svn commit: r54464 - head/share/xml
Hiroki Sato
hrs at FreeBSD.org
Fri Sep 4 04:21:00 UTC 2020
Author: hrs
Date: Fri Sep 4 04:20:59 2020
New Revision: 54464
URL: https://svnweb.freebsd.org/changeset/doc/54464
Log:
Disable hyphenate.verbatim. This does not work for very long verbatim
strings like pgpkeys.
Modified:
head/share/xml/freebsd-fo.xsl
Modified: head/share/xml/freebsd-fo.xsl
==============================================================================
--- head/share/xml/freebsd-fo.xsl Thu Sep 3 21:36:15 2020 (r54463)
+++ head/share/xml/freebsd-fo.xsl Fri Sep 4 04:20:59 2020 (r54464)
@@ -97,7 +97,8 @@
<!-- Hyphenation -->
<xsl:param name="hyphenate">true</xsl:param>
- <xsl:param name="hyphenate.verbatim" select="1"/>
+ <!-- Disable due to too long verbatim string in pgpkeys -->
+ <xsl:param name="hyphenate.verbatim" select="0"/>
<xsl:param name="hyphenate.verbatim.characters"> </xsl:param>
<!-- Base Fonts -->
More information about the svn-doc-head
mailing list