public
Description: An experimental alternative to the git-submodule command. Please email me if you actually try this out; I need more feedback.
Homepage:
Clone URL: git://github.com/apenwarr/git-subtree.git
git-subtree / manpage-normal.xsl
100644 14 lines (10 sloc) 0.475 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!-- 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>