Skip to content

Commit 7e55dfe

Browse files
authored
docs: exclude internal docs from rendering (#545)
Signed-off-by: Jan Kowalleck <[email protected]>
1 parent b3dd930 commit 7e55dfe

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

docs/conf.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,13 @@
5050
# List of patterns, relative to source directory, that match files and
5151
# directories to ignore when looking for source files.
5252
# This pattern also affects html_static_path and html_extra_path.
53-
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store', '.venv']
53+
# see https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-exclude_patterns
54+
exclude_patterns = [
55+
'processes', # internal docs
56+
'_build', # build target
57+
'.*', '**/.*', # dotfiles and folders
58+
'Thumbs.db', '**/Thumbs.db',
59+
]
5460

5561
# -- Options for HTML output -------------------------------------------------
5662

0 commit comments

Comments
 (0)