summaryrefslogtreecommitdiffstats
path: root/documentation/conf.py
diff options
context:
space:
mode:
authorNicolas Dechesne <nicolas.dechesne@linaro.org>2020-07-03 17:56:43 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-09-17 10:09:33 +0100
commit54d38a91e109cda79e5b19bc2965f8a73a468fbc (patch)
tree3b2101eec247d0034825ba8176f3846c77fa2d99 /documentation/conf.py
parent44e8d439aa57973437ea0f9d7ee60b8f55df9dd1 (diff)
downloadpoky-54d38a91e109cda79e5b19bc2965f8a73a468fbc.tar.gz
sphinx: add boilerplate file
A certain amount of boilerplate is added at the beginning of all documents. In DocBook this is copy/pasted in each file. Let's create a boilerplate ReST file, which we will include in each document, wherever it's required. (From yocto-docs rev: 37e0d5f246c614e62a7c0d4d72a5d6ce9ec5325e) Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/conf.py')
-rw-r--r--documentation/conf.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/documentation/conf.py b/documentation/conf.py
index 5519acb87a..a598c5bd88 100644
--- a/documentation/conf.py
+++ b/documentation/conf.py
@@ -43,7 +43,7 @@ templates_path = ['_templates']
43# List of patterns, relative to source directory, that match files and 43# List of patterns, relative to source directory, that match files and
44# directories to ignore when looking for source files. 44# directories to ignore when looking for source files.
45# This pattern also affects html_static_path and html_extra_path. 45# This pattern also affects html_static_path and html_extra_path.
46exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] 46exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store', 'boilerplate.rst']
47 47
48# master document name. The default changed from contents to index. so better 48# master document name. The default changed from contents to index. so better
49# set it ourselves. 49# set it ourselves.