Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
git/Documentation/manpage-normal.xsl
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
13 lines (10 sloc)
475 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- manpage-normal.xsl: | |
special settings for manpages rendered from asciidoc+docbook | |
handles anything we want to keep away from docbook-xsl 1.72.0 --> | |
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" | |
version="1.0"> | |
<xsl:import href="manpage-base.xsl"/> | |
<!-- these are the normal values for the roff control characters --> | |
<xsl:param name="git.docbook.backslash">\</xsl:param> | |
<xsl:param name="git.docbook.dot" >.</xsl:param> | |
</xsl:stylesheet> |