Add myself to the AUTHORS file
[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
47## link: macro
48#
49# Usage: link:command[manpage-section]
50#
51# Note, {0} is the manpage section, while {target} is the command.
52#
53# Show link as: <command>(<section>); if section is defined, else just
54# show the command.
55
56ifdef::backend-docbook[]
57[link-inlinemacro]
58{0%{target}}
59{0#<citerefentry>}
60{0#<refentrytitle>{target}</refentrytitle><manvolnum>{0}</manvolnum>}
61{0#</citerefentry>}
4ec67741
YD
62endif::backend-docbook[]
63
64ifdef::backend-xhtml11[]
a1e0467d 65[link-inlinemacro]
4ec67741
YD
66<a href="{target}.html">{target}{0?({0})}</a>
67endif::backend-xhtml11[]
68
a1e0467d
KH
69## stglink: macro
70#
71# Usage: stglink:command[]
72#
73# Show StGit link as: stg-<command>(1) in man pages, stg <command> in
74# html.
4ec67741
YD
75
76ifdef::backend-docbook[]
77[stglink-inlinemacro]
78<citerefentry>
a1e0467d 79 <refentrytitle>stg-{target}</refentrytitle><manvolnum>1</manvolnum>
4ec67741
YD
80</citerefentry>
81endif::backend-docbook[]
82
83ifdef::backend-xhtml11[]
84[stglink-inlinemacro]
a1e0467d 85<a href="stg-{target}.html">stg {target}</a>
4ec67741 86endif::backend-xhtml11[]
33ff9cdd
KH
87
88## stgsublink: macro
89#
90# Usage: stgsublink:command[]
91#
92# Show StGit link as: <command> in man pages, stg <command> in
93# html.
94
95ifdef::backend-docbook[]
96[stgsublink-inlinemacro]
97{target}
98endif::backend-docbook[]
99
100ifdef::backend-xhtml11[]
101[stgsublink-inlinemacro]
102<a href="stg-{target}.html">{target}</a>
103endif::backend-xhtml11[]