We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 041326f commit 20b53bcCopy full SHA for 20b53bc
doc/_static/diagrams/sphinx_build_phases.dot
@@ -0,0 +1,18 @@
1
+digraph phases {
2
+
3
+ graph [
4
+ rankdir = LR
5
+ ]
6
7
+ node [
8
+ shape = rect;
9
+ style = filled;
10
+ fillcolor ="#f7f7f7";
11
+ fontcolor = "#0a507a"
12
13
14
+ Initialization -> Reading;
15
+ Reading -> "Consistency checks";
16
+ "Consistency checks" -> Resolving;
17
+ Resolving -> Writing;
18
+}
doc/extdev/index.rst
@@ -95,6 +95,9 @@ Build phases
95
One thing that is vital in order to understand extension mechanisms is the way
96
in which a Sphinx project is built: this works in several phases.
97
98
+.. graphviz:: /_static/diagrams/sphinx_build_phases.dot
99
+ :caption: Build phases
100
101
**Phase 0: Initialization**
102
103
In this phase, almost nothing of interest to us happens. The source
0 commit comments