Remove Asciidoc versions of the documentation and building apparatus;
[exim.git] / doc / doc-docbook / Markup.txt
CommitLineData
9b371988
PH
1$Cambridge: exim/doc/doc-docbook/Markup.txt,v 1.1 2006/02/01 11:01:01 ph10 Exp $
2
3XFPT MARKUP USED IN THE EXIM DOCUMENTATION
4------------------------------------------
5
6This file contains a summary of the xfpt markup that is used in the source
7files of the Exim documentation. The source files are in plain text that can be
8edited by any text editor. They are converted by the xfpt application into
9DocBook XML for subsequent processing into the various output formats.
10
11The advantage of using xfpt format as a "back end" is that is uses relatively
12simple markup in the majority of the text, making it easier to read and edit.
13The disadvantage is that it is tricky to deal with complicated formatting,
14though that is probably true of any markup language, and is certainly true of
15XML itself.
16
17The Exim documentation uses standard xfpt DocBook markup with a few additions.
18The definitions of the additions that are used in spec.xfpt and filter.xfpt,
19respectively, appear at the start of each of those files. In this file we
20describe all the markup briefly, both the standard and additional items. See
21the xfpt specification for more details.
22
23Markup in xfpt is indicated in one of two ways: lines that start with a dot are
24interpreted specially ("directive lines"), and ampersand characters within the
25text always introduce a markup item. Recognized sequences that start with an
26ampersand are called "flags". Some of these have "partners" that do not
27necessarily start with an ampersand, but these must always appear after a flag
28that starts with an ampersand. There are no other forms of markup.
29
30There are two text characters that are not printed as their Ascii graphics.
31These are the grave accent and the single quote. They are automatically
32converted into opening and closing typographic quote characters in non-literal
33text. Other input characters that are not part of some markup always stand for
34themselves.
35
36
37CONTINUATION LINES
38
39Any line of input can be continued onto the next line by ending the first line
40with the sequence &&&. The line break and any leading spaces at the start of
41the following line are ignored. This processing happens as the lines are read
42in, before any other processing.
43
44
45SPECIAL CHARACTERS IN TEXT
46
47The following flag sequences are translated to non-Ascii characters:
48
49 &-- en-dash (generates –)
50 &~ hard space (generates  )
51
52The following two flags are for use on Exim option definitions. They are
53designed for use within italic text; however, they terminate and restart the
54italic so that the daggers themselves are roman. These flags do not work
55outside italic text.
56
57 &!! dagger (generates </emphasis>&dagger;<emphasis>)
58 &!? double dagger (generates </emphasis>&Dagger;<emphasis>)
59
60Any Unicode character can be accessed by giving its name or code point in the
61normal XML fashion. For example, &dagger; gives a dagger and &copy; gives a
62copyright symbol.
63
64
65AMPERSANDS AS DATA
66
67If you really do want an ampersand character in the text, you must type two
68ampersands. This is a flag that expands to &amp; in the output. Of course, you
69could also just type &amp; yourself; the flag is just for convenience.
70
71
72PAIRED FLAGS
73
74There are several sequences that use pairs of markup flags, surrounding some
75enclosed text, which is represented as ... in the following list:
76
77 &'...'& italic: maps to <emphasis>...</emphasis>
78 used for email addresses, domains, local
79 parts, header names, user names
80
81 &*...*& bold: maps to <emphasis role="bold">...</emphasis>
82 used for things like &*Note:*&
83
84 &`...`& monospaced text: maps to <literal>...</literal>
85 used for literal quoting in mixed-font text
86
87 &$...$& Exim variable: maps to <varname>$...</varname>
88 note that the leading dollar is automatically inserted
89
90 &%...%& Exim option, command line option: maps to <option>...</option>
91
92 &(...)& Exim driver name, Unix command name, filter command name:
93 maps to <command>...</command>
94
95 &[...]& C function: maps to <function>...</function>
96
97 &_..._& file name: maps to <filename>...</filename>
98
99 &"..."& put word in quotation marks: maps to <quote>...</quote>
100
101For example,
102
103 This is an &'italic phrase'&. This is a &_filename_& and a &$variable$&.
104 This &"word"& is in quote marks.
105
106It is important to use &"..."& rather than literal quotes so that different
107renditions can be used for different forms of output.
108
109These markup items can be nested, but not overlapped. However, the resulting
110XML from nested constructions is not always valid, so nesting is best avoided
111if possible. For example, &`xxx&'yyy'&xxx`& generates an <emphasis> item within
112a <literal> item, and the DocBook DTD does not allow that. However, a
113combination that does work is <literal> within an <emphasis>, so that is what
114you have to use if you want an italic or boldface monospaced font. For example,
115you have to use &*&`bold mono`&*& and not &`&*bold mono*&`&.
116
117
118LITERAL XML
119
120You can include blocks of literal XML between these two directive lines:
121
122 .literal xml
123 ...
124 .literal off
125
126There are some examples at the start of the Exim specification. You can also
127include individual XML elements by enclosing them in &<...>& but at the time of
128writing there are no examples of this usage in the Exim documentation.
129
130
131COMMENTS
132
133You can include comments that will not be copied to the XML document by
134starting a line with a dot followed by a space. You can include comments that
135are copied to the XML by either of the literal XML methods just described.
136
137
138URL REFERENCES
139
140To refer to a URL, use &url, followed by parentheses that can enclose one or
141two arguments, comma separated. The second, if present, is used as the
142displayed text. If there is only one argument, it is used both as the displayed
143text and as the URL. For example, here is a reference to
144&url(http://www.exim.org/,the exim home page). In HTML output, all you see is
145the display text; in printed output you see something like "the exim home page
146[http://www.exim.org/]". The URL is printed in a bold font.
147
148
149CHAPTERS AND SECTIONS
150
151The directives .chapter and .section mark the beginnings of chapters and
152sections. They are followed by a title in quotes, and optionally by up to two
153more arguments. Either single or double quotes can be used, and if you need a
154quote of the type being used as a delimiter within the string, it must be
155doubled. (Quotes are not in fact needed if the title contains no white space,
156but this is rare.)
157
158The second argument, if present and not an empty string, is an id for
159cross-references. For example:
160
161 .chapter "Environment for running local transports" "CHAPenvironment"
162
163To refer to a cross-reference point, enclose the name in &<<...>>&. For
164example:
165
166 See section &<<SECTexample>>&.
167
168Chapter titles are used for running feet in the PostScript and PDF forms of the
169manual. Sometimes they are too long, causing them to be split in an ugly way.
170The solution to this is to define a short title for the running feet as the
171third argument for .chapter or .section, like this:
172
173 .chapter "Environment for running local transports" "CHAPenvironment" &&&
174 "Environment for local transports"
175
176Note the use of &&& in this example to continue the logical input line. If you
177need to specify a third argument without a second argument, the second argument
178must be given as an empty string in quotes.
179
180
181DISPLAYS
182
183There are two forms of text display. Displayed blocks of literal text are
184started by .code and terminated by .endd:
185
186 .code
187 # Exim filter
188 deliver baggins@rivendell.middle-earth.example
189 .endd
190
191No flags are recognized in such blocks, which are displayed in a monospaced
192font.
193
194Blocks of text between .display and .endd are displayed in the current font,
195with the lines processed for flags as in normal paragraphs, but keeping the
196line layout. Flags can be used in the block to specify different fonts or
197special characters. For example:
198
199 .display
200 &`\n`& is replaced by a newline
201 &`\r`& is replaced by a carriage return
202 &`\t`& is replaced by a tab
203 .endd
204
205
206BLOCK QUOTES
207
208Text between .blockquote and .endblockquote is forced to start a new paragraph
209and is wrapped in a <blockquote> element.
210
211
212INDEX ENTRIES
213
214To create an index entry, include a line like one of these:
215
216 .cindex "primary text" "secondary text"
217 .oindex "primary text" "secondary text"
218
219The first is for the "concept index" and the second is for the "options index".
220Not all forms of output distinguish between these - sometimes there is just one
221index.
222
223The index for the Exim reference manual has a number of "see also" entries.
224These are coded in raw XML at the start of the source file.
225
226
227LISTS
228
229Bulleted (itemized) lists are started by .ilist, and ordered (numbered) lists
230are started by .olist, which can be followed by "arabic", "loweralpha",
231"lowerroman", "upperalpha", or "upperroman" to indicate the type of numeration
232that is wanted. Each new item is started by .next, and the whole list is
233terminated by .endlist. Lists can be nested. For example:
234
235 .ilist
236 The first item in the itemized list.
237 .olist lowerroman
238 The first item in the nested, numbered list
239 .next
240 The next item in the nested, numbered list.
241 .endlist
242 Continuing with the first item in the itemized list.
243 .next
244 The next item in the itemized list.
245 .endlist
246
247Variable lists are used for Exim command line options and similar things. They
248map into XML <variablelist> items. Start the list with .vlist and end it with
249.endlist. Each item starts with a .vitem line, followed by its description. The
250argument to .vitem must be quoted if it contains spaces. For example:
251
252 .vlist
253 .vitem &*--*&
254 This is a pseudo-option whose only purpose is to terminate the options and
255 therefore to cause subsequent command line items to be treated as arguments
256 rather than options, even if they begin with hyphens.
257
258 .vitem &*--help*&
259 This option causes Exim to output a few sentences stating what it is.
260 The same output is generated if the Exim binary is called with no options and
261 no arguments.
262 ...
263 .endlist
264
265
266TABLES
267
268The .itable macro directive in xfpt can be used to specify an informal table.
269See the specification for details. The Exim specification uses this directly in
270one place, but most of its tables contain only two columns, for which a
271cut-down macro called .table2 has been defined. Its arguments are the widths of
272the columns, defaulting to 190pt and 300pt, which are suitable for the many
273tables that appear at the start of the global options definition chapter. Each
274row in a table is defined by a .row macro, and the table ends with .endtable.
275For example:
276
277 .table2 100pt
278 .row &_OptionLists.txt_& "list of all options in alphabetical order"
279 .row &_dbm.discuss.txt_& "discussion about DBM libraries"
280 ...
281 .endtable
282
283This example overrides the width of the first column. The first arguments of
284the .row macro do not need quotes, because they contain no white space, but
285quotes could have been used.
286
287
288EXIM CONFIGURATION OPTION HEADINGS
289
290Each Exim configuration option is formatted with its name, usage, type, and
291default value on a single output line, spread over the line so as to fill it
292completely. The only way I know of aligning text using DocBook is to use a
293table. The .option macro defines such a table and inserts its four arguments
294into the cells. For example:
295
296 .option acl_not_smtp_mime main string&!! unset
297 This option causes...
298
299The macro contains the font definitions and the heading words "Use", "Type",
300and "Default", so you do not have to supply them. Notice the use of the &!!
301flag to put a dagger after the word "string".
302
303
304CHANGE BARS
305
306I have not yet found a way of producing change bars in the PostScript and PDF
307versions of the documents. However, it is possible to put a green background
308behind changed text in the HTML version, so the appropriate markup should be
309used in the source. There is a facility in xfpt for setting the "revisionflag"
310attribute on appropriate XML elements. There is also a macro called .new which
311packages this up for use in three different ways. One or more large text items
312can be placed between .new and .wen ("wen" is "new" backwards). For example:
313
314 This paragraph is not flagged as new.
315 .new
316 This is a new paragraph that contains a display:
317 .display
318 whatever
319 .endd
320 This is the next paragraph.
321 .wen
322 Here is the next, unmarked, paragraph.
323
324When called without an argument, .new terminates the current paragraph, and
325.wen always does so. Therefore, even though there are no blank lines before
326.new or .wen above, the marked text will be in a paragraph of its own. You
327can, of course, put in blank lines if you wish, and it is probably clearer to
328do so.
329
330If want to mark just a few words inside a paragraph as new, you can call the
331.new macro with an argument. The macro can be called either as a directive or
332as an inline macro call, which takes the form of an ampersand followed by the
333name, with the argument in parentheses. For example:
334
335 This is a paragraph that has
336 .new "a few marked words"
337 within it. Here are &new(some more) marked words.
338
339The effect of this is to generate a <phrase> XML element with the revisionflag
340attribute set. The .wen macro is not used in this case.
341
342If you want to mark a whole table as new, .new and .wen can be used to surround
343it as described above. However, current DocBook processors do not seem to
344recognize the "revisionflag" attribute on individual rows and table entries.
345You can, nevertheless, mark the contents of individual table entries as changed
346by using an inline macro call. For example:
347
348 .row "&new(some text)" "...."
349
350Each such entry must be separately marked. If there are more than one or two,
351it may be easier just to mark the entire table.
352
353Philip Hazel
354Last updated: 25 January 2006