We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c8887c commit 826bc2aCopy full SHA for 826bc2a
sphinx_autobuild/build.py
@@ -7,22 +7,28 @@
7
from colorama import Fore, Style
8
9
SPHINX_BUILD_OPTIONS = (
10
+ # general options
11
("-b", "builder"),
12
("-a", None),
13
("-E", None),
- ("-t", "tag"),
14
- ("-d", "path"),
15
("-j", "N"),
+ ("--jobs", "N"),
16
+ # path options
17
+ ("-d", "path"),
18
("-c", "path"),
19
+ # build configuration options
20
("-C", None),
21
("-D", "setting=value"),
22
("-A", "name=value"),
23
+ ("-t", "tag"),
24
("-n", None),
- ("-N", None),
- ("--color", None),
25
+ # console output options
26
("-v", None),
27
("-q", None),
28
("-Q", None),
29
+ ("--color", None),
30
+ ("-N", None),
31
+ # warning control options
32
("-w", "file"),
33
("--keep-going", None),
34
("-W", None),
0 commit comments