From 1318623831973753b5b3afbd3e00901b69cf8f4c Mon Sep 17 00:00:00 2001 From: Angus Gratton Date: Tue, 10 Dec 2019 17:26:12 +1100 Subject: [PATCH] docs: Don't search in _static directories for rst files --- docs/conf_common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/conf_common.py b/docs/conf_common.py index 2deb903a9..7075a1e50 100644 --- a/docs/conf_common.py +++ b/docs/conf_common.py @@ -118,7 +118,7 @@ print('Version: {0} Release: {1}'.format(version, release)) # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. -exclude_patterns = ['**/inc/**'] +exclude_patterns = ['**/inc/**', '_static'] # Add target-specific excludes based on tags (for the IDF_TARGET). Haven't found any better way to do this yet