Skip to content

Commit

Permalink
docs: exclude internal docs from rendering (#545)
Browse files Browse the repository at this point in the history
Signed-off-by: Jan Kowalleck <jan.kowalleck@gmail.com>
  • Loading branch information
jkowalleck authored Jan 31, 2024
1 parent b3dd930 commit 7e55dfe
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,13 @@
# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
# This pattern also affects html_static_path and html_extra_path.
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store', '.venv']
# see https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-exclude_patterns
exclude_patterns = [
'processes', # internal docs
'_build', # build target
'.*', '**/.*', # dotfiles and folders
'Thumbs.db', '**/Thumbs.db',
]

# -- Options for HTML output -------------------------------------------------

Expand Down

0 comments on commit 7e55dfe

Please sign in to comment.