diff options
author | Jon TURNEY <jon.turney@dronecode.org.uk> | 2015-06-12 21:26:32 +0100 |
---|---|---|
committer | Jon TURNEY <jon.turney@dronecode.org.uk> | 2015-06-18 11:32:08 +0100 |
commit | e9549aef386be18950029b9a7f178467b32c670e (patch) | |
tree | 712d3b1a5716917d16d9a41f0b5549f3a18caed7 /winsup/doc/man.xsl | |
parent | 94f16969d39dfc0de3eefb75a4793367da76fe00 (diff) | |
download | cygnal-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.xsl | 13 |
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> |