chiark / gitweb /
server/tripe-admin.5: Describe the quoting convention.
[tripe] / defs.man.in
1 .\" -*-nroff-*-
2 .\"
3 .\" Common definitions for TrIPE manpages
4 .\"
5 .\" (c) 2008 Straylight/Edgeware
6 .\"
7 .
8 .\"----- Licensing notice ---------------------------------------------------
9 .\"
10 .\" This file is part of Trivial IP Encryption (TrIPE).
11 .\"
12 .\" TrIPE is free software; you can redistribute it and/or modify
13 .\" it under the terms of the GNU General Public License as published by
14 .\" the Free Software Foundation; either version 2 of the License, or
15 .\" (at your option) any later version.
16 .\"
17 .\" TrIPE is distributed in the hope that it will be useful,
18 .\" but WITHOUT ANY WARRANTY; without even the implied warranty of
19 .\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20 .\" GNU General Public License for more details.
21 .\"
22 .\" You should have received a copy of the GNU General Public License
23 .\" along with TrIPE; if not, write to the Free Software Foundation,
24 .\" Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25 .
26 .\"--------------------------------------------------------------------------
27 .\" Preliminary definitions.
28 .
29 .\" String definitions and font selection.
30 .ie t \{\
31 .  ds o \(bu
32 .  ds ss \s8\u
33 .  ds se \d\s0
34 .  if \n(.g \{\
35 .    fam P
36 .  \}
37 .\}
38 .el \{\
39 .  ds o o
40 .  ds ss ^
41 .  ds se
42 .\}
43 .
44 .ds /c @configdir@
45 .ds /s @socketdir@
46 .
47 .\" .hP TEXT -- start an indented paragraph with TEXT hanging off to the left
48 .de hP
49 .IP
50 \h'-\w'\fB\\$1\ \fP'u'\fB\\$1\ \fP\c
51 ..
52 .
53 .\" .SP -- equivalent to .TP, but indicates item should be summarized
54 .de SP
55 .TP
56 ..
57 .
58 .\" .VS ... .VE -- present a code example
59 .de VS
60 .sp 1
61 .RS
62 .nf
63 .ft B
64 ..
65 .de VE
66 .ft R
67 .fi
68 .RE
69 .sp 1
70 ..
71 .
72 .\"----- That's all, folks --------------------------------------------------