aboutsummaryrefslogtreecommitdiff
path: root/Documentation/Makefile
diff options
context:
space:
mode:
authorSean Estabrooks <seanlkml@sympatico.ca>2006-04-28 09:15:06 -0400
committerJunio C Hamano <junkio@cox.net>2006-04-28 14:31:51 -0700
commit776e994af5b85d77424581bda37fb615897063cc (patch)
tree8463500e920d45279107b2180d190c74dea78e75 /Documentation/Makefile
parent48aeecdcc14684111ddb8ac0ec3bfdc5245ee75e (diff)
downloadgit-776e994af5b85d77424581bda37fb615897063cc.tar.gz
git-776e994af5b85d77424581bda37fb615897063cc.tar.xz
Properly render asciidoc "callouts" in git man pages.
Adds an xsl fragment to render docbook callouts when converting to man page format. Update the Makefile to have "xmlto" use it when generating man pages. Signed-off-by: Sean Estabrooks <seanlkml@sympatico.ca>
Diffstat (limited to 'Documentation/Makefile')
-rw-r--r--Documentation/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/Makefile b/Documentation/Makefile
index f4cbf7e15..c1af22ce0 100644
--- a/Documentation/Makefile
+++ b/Documentation/Makefile
@@ -79,7 +79,7 @@ clean:
asciidoc -b xhtml11 -d manpage -f asciidoc.conf $<
%.1 %.7 : %.xml
- xmlto man $<
+ xmlto -m callouts.xsl man $<
%.xml : %.txt
asciidoc -b docbook -d manpage -f asciidoc.conf $<