Skip to content

Commit 12f0993

Browse files
committed
docs(glosary): Fix syntax
1 parent f0e24ff commit 12f0993

File tree

1 file changed

+39
-41
lines changed

1 file changed

+39
-41
lines changed

docs/glossary.md

Lines changed: 39 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -2,65 +2,63 @@
22

33
# Glossary
44

5-
```{eval-rst}
6-
.. glossary::
5+
```{glossary}
76
8-
tmuxp
9-
A tool to manage workspaces with tmux. A pythonic abstraction of
10-
tmux.
7+
tmuxp
8+
A tool to manage workspaces with tmux. A pythonic abstraction of
9+
tmux.
1110
12-
tmux(1)
13-
The tmux binary. Used internally to distinguish tmuxp is only a
14-
layer on top of tmux.
11+
tmux
12+
tmux(1)
13+
The tmux binary. Used internally to distinguish tmuxp is only a
14+
layer on top of tmux.
1515
16-
kaptan
17-
configuration management library, see `kaptan on github`_.
16+
kaptan
17+
configuration management library, see [kaptan on github](https://github.com/emre/kaptan).
1818
19-
Server
20-
Tmux runs in the background of your system as a process.
19+
Server
20+
Tmux runs in the background of your system as a process.
2121
22-
The server holds multiple :term:`Session`. By default, tmux
23-
automatically starts the server the first time ``$ tmux`` is ran.
22+
The server holds multiple {term}`Session`. By default, tmux
23+
automatically starts the server the first time ``$ tmux`` is ran.
2424
25-
A server contains :term:`session`'s.
25+
A server contains {term}`session`'s.
2626
27-
tmux starts the server automatically if it's not running.
27+
tmux starts the server automatically if it's not running.
2828
29-
Advanced cases: multiple can be run by specifying
30-
``[-L socket-name]`` and ``[-S socket-path]``.
29+
Advanced cases: multiple can be run by specifying
30+
``[-L socket-name]`` and ``[-S socket-path]``.
3131
32-
Client
33-
Attaches to a tmux :term:`server`. When you use tmux through CLI,
34-
you are using tmux as a client.
32+
Client
33+
Attaches to a tmux {term}`server`. When you use tmux through CLI,
34+
you are using tmux as a client.
3535
36-
Session
37-
Inside a tmux :term:`server`.
36+
Session
37+
Inside a tmux {term}`server`.
3838
39-
The session has 1 or more :term:`Window`. The bottom bar in tmux
40-
show a list of windows. Normally they can be navigated with
41-
``Ctrl-a [0-9]``, ``Ctrl-a n`` and ``Ctrl-a p``.
39+
The session has 1 or more {term}`Window`. The bottom bar in tmux
40+
show a list of windows. Normally they can be navigated with
41+
``Ctrl-a [0-9]``, ``Ctrl-a n`` and ``Ctrl-a p``.
4242
43-
Sessions can have a ``session_name``.
43+
Sessions can have a ``session_name``.
4444
45-
Uniquely identified by ``session_id``.
45+
Uniquely identified by ``session_id``.
4646
47-
Window
48-
Entity of a :term:`session`.
47+
Window
48+
Entity of a {term}`session`.
4949
50-
Can have 1 or more :term:`pane`.
50+
Can have 1 or more {term}`pane`.
5151
52-
Panes can be organized with a layouts.
52+
Panes can be organized with a layouts.
5353
54-
Windows can have names.
54+
Windows can have names.
5555
56-
Pane
57-
Linked to a :term:`Window`.
56+
Pane
57+
Linked to a {term}`Window`.
5858
59-
a pseudoterminal.
59+
a pseudoterminal.
6060
61-
Target
62-
A target, cited in the manual as ``[-t target]`` can be a session,
63-
window or pane.
64-
65-
.. _kaptan on github: https://github.com/emre/kaptan
61+
Target
62+
A target, cited in the manual as ``[-t target]`` can be a session,
63+
window or pane.
6664
```

0 commit comments

Comments
 (0)