forked from mongodb/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsphinx.yaml
81 lines (80 loc) · 1.26 KB
/
sphinx.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# The items in the ``builders`` list are the name of Sphinx builders
# supported by ``sphinx-build``.
#
# The ``prerequsites`` list stores all targets that must build before
# sphinx can begin.
#
# The ``generated-source`` list stores all the targets that generate rst.
prerequisites:
- setup
- generate-source
generated-source:
- tables
- api
- toc
- releases
- generate-manpages
- intersphinx
- images
- composites
### --- ####
root-base:
languages: ['es', 'fr', 'ja', 'it', 'zh']
web-base:
inherit: root-base
tags:
- web
print-base:
inherit: root-base
tags:
- print
### --- ####
dirhtml:
builder: dirhtml
inherit: web-base
html:
builder: html
inherit: web-base
html-python:
builder: html
inherit: web-base
tags:
- python
html-mongo:
builder: html
inherit: web-base
tags:
- mongo
latex:
builder: latex
inherit: print-base
epub:
builder: epub
inherit: print-base
singlehtml:
builder: singlehtml
inherit: root-base
tags:
- web
man:
builder: man
inherit: root-base
tags:
- manpage
gettext:
builder: gettext
tags:
- print
- web
- manpage
linkcheck:
builder: linkcheck
inherit: root-base
tags:
- web
texinfo:
builder: texinfo
inherit: root-base
tags:
- print
...