summaryrefslogtreecommitdiffstats
path: root/winsup/doc/man.xsl
diff options
context:
space:
mode:
authorJon TURNEY <jon.turney@dronecode.org.uk>2015-06-12 21:26:32 +0100
committerJon TURNEY <jon.turney@dronecode.org.uk>2015-06-18 11:32:08 +0100
commite9549aef386be18950029b9a7f178467b32c670e (patch)
tree712d3b1a5716917d16d9a41f0b5549f3a18caed7 /winsup/doc/man.xsl
parent94f16969d39dfc0de3eefb75a4793367da76fe00 (diff)
downloadcygnal-e9549aef386be18950029b9a7f178467b32c670e.tar.gz
cygnal-e9549aef386be18950029b9a7f178467b32c670e.tar.bz2
cygnal-e9549aef386be18950029b9a7f178467b32c670e.zip
winsup/doc: Add man.xsl customization stylesheet
2015-06-17 Jon Turney <jon.turney@dronecode.org.uk> * man.xsl: New file. * Makefile.in (utils2man.stamp, api2man.stamp): Use it. Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
Diffstat (limited to 'winsup/doc/man.xsl')
-rw-r--r--winsup/doc/man.xsl13
1 files changed, 13 insertions, 0 deletions
diff --git a/winsup/doc/man.xsl b/winsup/doc/man.xsl
new file mode 100644
index 000000000..22e624fab
--- /dev/null
+++ b/winsup/doc/man.xsl
@@ -0,0 +1,13 @@
+<?xml version='1.0'?>
+<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version='1.0'>
+
+<!-- don't truncate manpage titles for long function names -->
+<xsl:param name="man.th.title.max.length" select="33" />
+
+<!-- don't moan about missing metadata -->
+<xsl:param name="refentry.meta.get.quietly" select="1" />
+
+<!-- base URL for relative links -->
+<xsl:param name="man.base.url.for.relative.links">https://cygwin.com/cygwin-ug-net/</xsl:param>
+
+</xsl:stylesheet>