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 4a05392 commit a836d79Copy full SHA for a836d79
Doc/conf.py
@@ -63,8 +63,10 @@
63
# Minimum version of sphinx required
64
needs_sphinx = '3.2'
65
66
+# Ignore any .rst files in the includes/ directory;
67
+# they're embedded in pages but not rendered individually.
68
# Ignore any .rst files in the venv/ directory.
-exclude_patterns = ['venv/*', 'README.rst']
69
+exclude_patterns = ['includes/*.rst', 'venv/*', 'README.rst']
70
venvdir = os.getenv('VENVDIR')
71
if venvdir is not None:
72
exclude_patterns.append(venvdir + '/*')
0 commit comments