File tree 2 files changed +5
-4
lines changed
2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ Note a few things:
61
61
62
62
We do not, in fact, generate Python code as a string, but instead generate AST
63
63
which we can convert to executable Python functions using the builtin functions
64
- `compile <https://docs.python.org/3/library/functions.html#compile >`_ and `exec
64
+ `compile <https://docs.python.org/3/library/functions.html#compile >`__ and `exec
65
65
<https://docs.python.org/3/library/functions.html#exec> `_.
66
66
67
67
Layers
@@ -86,7 +86,7 @@ module to construct correct code without worrying about lower level details.
86
86
87
87
The classes in the ``codegen `` module eventually need to produce AST objects
88
88
that can be passed to Python’s builtin `compile
89
- <https://docs.python.org/3/library/functions.html?highlight=compile#compile> `_
89
+ <https://docs.python.org/3/library/functions.html?highlight=compile#compile> `__
90
90
function. The stdlib `ast <https://docs.python.org/3/library/ast.html >`_ module
91
91
has incompatible differences between different Python versions, so we abstract
92
92
over these in ``fluent_compiler.ast_compat `` which allows the ``codegen `` module
Original file line number Diff line number Diff line change 41
41
extensions = [
42
42
"sphinx.ext.intersphinx" ,
43
43
"sphinx.ext.viewcode" ,
44
+ "sphinx_rtd_theme" ,
44
45
]
45
46
46
47
# Add any paths that contain templates here, relative to this directory.
60
61
#
61
62
# This is also used if you do content translation via gettext catalogs.
62
63
# Usually you set "language" from the command line for these cases.
63
- language = None
64
+ language = "en"
64
65
65
66
# List of patterns, relative to source directory, that match files and
66
67
# directories to ignore when looking for source files.
76
77
# The theme to use for HTML and HTML Help pages. See the documentation for
77
78
# a list of builtin themes.
78
79
#
79
- html_theme = "default "
80
+ html_theme = "sphinx_rtd_theme "
80
81
81
82
# Theme options are theme-specific and customize the look and feel of a theme
82
83
# further. For a list of options available for each theme, see the
You can’t perform that action at this time.
0 commit comments