aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Maydell <peter.maydell@linaro.org>2019-02-28 14:56:19 +0000
committerPeter Maydell <peter.maydell@linaro.org>2019-03-05 12:44:01 +0000
commit63cdd0082dd324acaba584dc5677b029bbbc43e3 (patch)
tree8ef366cdcad606935498b790f9e201bc59f92233
parent2eafc2624310783942f5c7180a1daea64b04bf24 (diff)
docs/conf.py: Don't include rST sources in HTML build
Sphinx defaults to including all the rST source files in the HTML build and making each HTML page link to the source file. Disable that. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Alex Bennée <alex.bennee@linaro.org> Acked-by: Aleksandar Markovic <amarkovic@wavecomp.com> Message-id: 20190228145624.24885-7-peter.maydell@linaro.org
-rw-r--r--docs/conf.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/conf.py b/docs/conf.py
index 348e635874..6ddaa549f2 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -112,6 +112,9 @@ html_sidebars = {
]
}
+# Don't copy the rST source files to the HTML output directory,
+# and don't put links to the sources into the output HTML.
+html_copy_source = False
# -- Options for HTMLHelp output ------------------------------------------