https://github.com/git/git
Raw File
Tip revision: 235d521da60e4699e5bd59ac658b5b48bd76ddca authored by Junio C Hamano on 02 November 2005, 05:58:53 UTC
GIT 0.99.9b
Tip revision: 235d521
asciidoc.conf
## gitlink: macro
#
# Usage: gitlink:command[manpage-section]
#
# Note, {0} is the manpage section, while {target} is the command.
#
# Show GIT link as: <command>(<section>); if section is defined, else just show
# the command.

[attributes]
caret=^

ifdef::backend-docbook[]
[gitlink-inlinemacro]
{0%{target}}
{0#<citerefentry>}
{0#<refentrytitle>{target}</refentrytitle><manvolnum>{0}</manvolnum>}
{0#</citerefentry>}
endif::backend-docbook[]

ifdef::backend-xhtml11[]
[gitlink-inlinemacro]
<a href="{target}.html">{target}{0?({0})}</a>
endif::backend-xhtml11[]


back to top