aboutsummaryrefslogtreecommitdiff
path: root/doc/chapters/vocabulary.texi
diff options
context:
space:
mode:
authorng0 <ng0@infotropique.org>2017-10-21 15:45:29 +0000
committerng0 <ng0@infotropique.org>2017-10-21 15:45:29 +0000
commitf40c4ab2de20ec6a070b3c07a082633be10be80f (patch)
tree8f696b30743f4cf065f59e766a5f78bf564719ca /doc/chapters/vocabulary.texi
parentf454f1fc042c42ee1dc87c7837b655a45ef327b5 (diff)
downloadgnunet-f40c4ab2de20ec6a070b3c07a082633be10be80f.tar.gz
gnunet-f40c4ab2de20ec6a070b3c07a082633be10be80f.zip
doc changes
modified: contrib/packages/guix/gnunet-doc.scm adapt to the changes in this mixed commit modified: doc/.gitignore add new files modified: doc/Makefile.am make use of canonical, included, rules generate html output with docstyle.css from taler exchange. modified: doc/chapters/installation.texi new file: doc/chapters/vocabulary.texi modified: doc/gnunet-c-tutorial.texi modified: doc/gnunet.texi new file: doc/docstyle.css not really in use yet, but collected for later: doc/gendocs.sh , doc/hacks.el
Diffstat (limited to 'doc/chapters/vocabulary.texi')
-rw-r--r--doc/chapters/vocabulary.texi47
1 files changed, 47 insertions, 0 deletions
diff --git a/doc/chapters/vocabulary.texi b/doc/chapters/vocabulary.texi
new file mode 100644
index 000000000..8b6cbe35a
--- /dev/null
+++ b/doc/chapters/vocabulary.texi
@@ -0,0 +1,47 @@
1@node Vocabulary
2@chapter Vocabulary
3
4@menu
5* Words and characters::
6* Technical Assumptions::
7@end menu
8
9@node Words and characters
10@section Words and characters
11
12Throughout this document we use certain words and characters.
13
14@enumerate
15@item
16``@command{#}'' in example code blocks describes commands, ie comments.
17
18@example
19# Do the foobar thing:
20$ make foobar
21@end example
22
23@item
24Dollarsign ``@command{$}'' in example code blocks describes commands you
25execute as unprivileged users.
26
27@example
28$ cd foo; ./configure --example-switch
29@end example
30
31@item
32Backslash ``@command{\}'' describes linebreaks.
33
34@example
35./configure --foo --bar --baz \
36 --short-loop
37@end example
38
39...expands to @code{./configure --foo --bar --baz --short-loop}
40
41@end enumerate
42
43@node Technical Assumptions
44@section Technical Assumptions
45
46@c Is it really assuming Bash (ie Bash extensions of POSIX being used)?
47The shell on GNU systems is assumed to be Bash.