1## linkgit: macro
2#
3# Usage: linkgit:command[manpage-section]
4#
5# Note, {0} is the manpage section, while {target} is the command.
6#
7# Show GIT link as: <command>(<section>); if section is defined, else just show
8# the command.
9
10[attributes]
11asterisk=*
12plus=+
13caret=^
14startsb=[
15endsb=]
16tilde=~
17
18ifdef::backend-docbook[]
19[linkgit-inlinemacro]
20{0%{target}}
21{0#<citerefentry>}
22{0#<refentrytitle>{target}</refentrytitle><manvolnum>{0}</manvolnum>}
23{0#</citerefentry>}
24endif::backend-docbook[]
25
26ifdef::backend-docbook[]
27ifndef::docbook-xsl-172[]
28# "unbreak" docbook-xsl v1.68 for manpages. v1.69 works with or without this.
29# v1.72 breaks with this because it replaces dots not in roff requests.
30[listingblock]
31<example><title>{title}</title>
32<literallayout>
33ifdef::doctype-manpage[]
34 .ft C
35endif::doctype-manpage[]
36|
37ifdef::doctype-manpage[]
38 .ft
39endif::doctype-manpage[]
40</literallayout>
41{title#}</example>
42endif::docbook-xsl-172[]
43endif::backend-docbook[]
44
45ifdef::doctype-manpage[]
46ifdef::backend-docbook[]
47[header]
48template::[header-declarations]
49<refentry>
50<refmeta>
51<refentrytitle>{mantitle}</refentrytitle>
52<manvolnum>{manvolnum}</manvolnum>
53<refmiscinfo class="source">Git</refmiscinfo>
54<refmiscinfo class="version">{git_version}</refmiscinfo>
55<refmiscinfo class="manual">Git Manual</refmiscinfo>
56</refmeta>
57<refnamediv>
58 <refname>{manname}</refname>
59 <refpurpose>{manpurpose}</refpurpose>
60</refnamediv>
61endif::backend-docbook[]
62endif::doctype-manpage[]
63
64ifdef::backend-xhtml11[]
65[linkgit-inlinemacro]
66<a href="{target}.html">{target}{0?({0})}</a>
67endif::backend-xhtml11[]