We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 482d31d commit 4f8f5dcCopy full SHA for 4f8f5dc
1 file changed
synthtool/gcp/templates/python_library/docs/conf.py.j2
@@ -21,6 +21,7 @@ import shlex
21
sys.path.insert(0, os.path.abspath(".."))
22
23
# For plugins that can not read conf.py.
24
+# See also: https://github.com/docascode/sphinx-docfx-yaml/issues/85
25
sys.path.insert(0, os.path.abspath("."))
26
27
__version__ = "{{ metadata['version'] }}"
@@ -93,7 +94,12 @@ language = None
93
94
95
# List of patterns, relative to source directory, that match files and
96
# directories to ignore when looking for source files.
-exclude_patterns = ["_build"]
97
+exclude_patterns = [
98
+ "_build",
99
+ "samples/AUTHORING_GUIDE.md",
100
+ "samples/CONTRIBUTING.md",
101
+ "samples/snippets/README.rst",
102
+]
103
104
# The reST default role (used for this markup: `text`) to use for all
105
# documents.
0 commit comments