2005-09-19 12:10:14 +02:00
|
|
|
## 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.
|
|
|
|
|
2005-10-06 01:56:31 +02:00
|
|
|
[attributes]
|
|
|
|
caret=^
|
2006-07-15 01:36:00 +02:00
|
|
|
startsb=[
|
|
|
|
endsb=]
|
2006-10-03 07:52:57 +02:00
|
|
|
tilde=~
|
2005-10-06 01:56:31 +02:00
|
|
|
|
2005-09-19 12:10:14 +02:00
|
|
|
ifdef::backend-docbook[]
|
|
|
|
[gitlink-inlinemacro]
|
|
|
|
{0%{target}}
|
|
|
|
{0#<citerefentry>}
|
|
|
|
{0#<refentrytitle>{target}</refentrytitle><manvolnum>{0}</manvolnum>}
|
|
|
|
{0#</citerefentry>}
|
|
|
|
endif::backend-docbook[]
|
|
|
|
|
2006-03-06 00:13:36 +01:00
|
|
|
ifdef::backend-docbook[]
|
|
|
|
# "unbreak" docbook-xsl v1.68 for manpages. v1.69 works with or without this.
|
|
|
|
[listingblock]
|
|
|
|
<example><title>{title}</title>
|
|
|
|
<literallayout>
|
|
|
|
|
|
|
|
|
</literallayout>
|
|
|
|
{title#}</example>
|
|
|
|
endif::backend-docbook[]
|
|
|
|
|
2005-09-19 12:10:14 +02:00
|
|
|
ifdef::backend-xhtml11[]
|
|
|
|
[gitlink-inlinemacro]
|
|
|
|
<a href="{target}.html">{target}{0?({0})}</a>
|
|
|
|
endif::backend-xhtml11[]
|
2005-10-06 01:56:31 +02:00
|
|
|
|
|
|
|
|