We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b3be655 commit 627c2deCopy full SHA for 627c2de
doc/source/conf.py
@@ -151,7 +151,14 @@
151
# List of patterns, relative to source directory, that match files and
152
# directories to ignore when looking for source files.
153
# This pattern also affects html_static_path and html_extra_path.
154
-exclude_patterns = []
+exclude_patterns = ["links_and_refs.rst"]
155
+
156
+# make rst_epilog a variable, so you can add other epilog parts to it
157
+rst_epilog = ""
158
159
+# Read links and targets from file
160
+with open("links_and_refs.rst") as f:
161
+ rst_epilog += f.read()
162
163
# The name of the Pygments (syntax highlighting) style to use.
164
pygments_style = None
0 commit comments