Documentation: Rename link macros
[stgit] / Documentation / asciidoc.conf
CommitLineData
4ec67741 1[attributes]
a1e0467d
KH
2asterisk=*
3plus=+
4caret=^
4ec67741
YD
5startsb=[
6endsb=]
7tilde=~
8
9ifdef::backend-docbook[]
a1e0467d 10ifndef::docbook-xsl-172[]
4ec67741 11# "unbreak" docbook-xsl v1.68 for manpages. v1.69 works with or without this.
a1e0467d 12# v1.72 breaks with this because it replaces dots not in roff requests.
4ec67741
YD
13[listingblock]
14<example><title>{title}</title>
15<literallayout>
a1e0467d
KH
16ifdef::doctype-manpage[]
17&#10;.ft C&#10;
18endif::doctype-manpage[]
4ec67741 19|
a1e0467d
KH
20ifdef::doctype-manpage[]
21&#10;.ft&#10;
22endif::doctype-manpage[]
4ec67741
YD
23</literallayout>
24{title#}</example>
a1e0467d
KH
25endif::docbook-xsl-172[]
26endif::backend-docbook[]
27
28ifdef::doctype-manpage[]
29ifdef::backend-docbook[]
30[header]
31template::[header-declarations]
32<refentry>
33<refmeta>
34<refentrytitle>{mantitle}</refentrytitle>
35<manvolnum>{manvolnum}</manvolnum>
36<refmiscinfo class="source">StGit</refmiscinfo>
37<refmiscinfo class="version">{stgit_version}</refmiscinfo>
38<refmiscinfo class="manual">StGit Manual</refmiscinfo>
39</refmeta>
40<refnamediv>
41 <refname>{manname}</refname>
42 <refpurpose>{manpurpose}</refpurpose>
43</refnamediv>
44endif::backend-docbook[]
45endif::doctype-manpage[]
46
d3c560ba 47## htmllink: macro
a1e0467d 48#
d3c560ba
KH
49# Usage: htmllink:url[text]
50
51ifdef::backend-docbook[]
52[htmllink-inlinemacro]
53{0}
54endif::backend-docbook[]
55
56ifdef::backend-xhtml11[]
57[htmllink-inlinemacro]
58<a href="{target}">{0}</a>
59endif::backend-xhtml11[]
60
61## manlink: macro
62#
63# Usage: manlink:command[manpage-section]
a1e0467d
KH
64#
65# Note, {0} is the manpage section, while {target} is the command.
66#
67# Show link as: <command>(<section>); if section is defined, else just
68# show the command.
69
70ifdef::backend-docbook[]
d3c560ba 71[manlink-inlinemacro]
a1e0467d
KH
72{0%{target}}
73{0#<citerefentry>}
74{0#<refentrytitle>{target}</refentrytitle><manvolnum>{0}</manvolnum>}
75{0#</citerefentry>}
4ec67741
YD
76endif::backend-docbook[]
77
78ifdef::backend-xhtml11[]
d3c560ba 79[manlink-inlinemacro]
4ec67741
YD
80<a href="{target}.html">{target}{0?({0})}</a>
81endif::backend-xhtml11[]
82
760a7cfc 83## linkstg: macro
a1e0467d 84#
760a7cfc 85# Usage: linkstg:command[]
a1e0467d
KH
86#
87# Show StGit link as: stg-<command>(1) in man pages, stg <command> in
88# html.
4ec67741
YD
89
90ifdef::backend-docbook[]
760a7cfc 91[linkstg-inlinemacro]
4ec67741 92<citerefentry>
a1e0467d 93 <refentrytitle>stg-{target}</refentrytitle><manvolnum>1</manvolnum>
4ec67741
YD
94</citerefentry>
95endif::backend-docbook[]
96
97ifdef::backend-xhtml11[]
760a7cfc 98[linkstg-inlinemacro]
a1e0467d 99<a href="stg-{target}.html">stg {target}</a>
4ec67741 100endif::backend-xhtml11[]
33ff9cdd 101
760a7cfc 102## linkstgsub: macro
33ff9cdd 103#
760a7cfc 104# Usage: linkstgsub:command[]
33ff9cdd 105#
760a7cfc 106# Show StGit link as: <command>.
33ff9cdd
KH
107
108ifdef::backend-docbook[]
760a7cfc 109[linkstgsub-inlinemacro]
33ff9cdd
KH
110{target}
111endif::backend-docbook[]
112
113ifdef::backend-xhtml11[]
760a7cfc 114[linkstgsub-inlinemacro]
33ff9cdd
KH
115<a href="stg-{target}.html">{target}</a>
116endif::backend-xhtml11[]