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.mayd...@linaro.org> Reviewed-by: Alex Bennée <alex.ben...@linaro.org> Acked-by: Aleksandar Markovic <amarko...@wavecomp.com> Reviewed-by: Richard Henderson <richard.hender...@linaro.org> Message-id: 20190305172139.32662-7-peter.mayd...@linaro.org Message-id: 20190228145624.24885-7-peter.mayd...@linaro.org --- docs/conf.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/conf.py b/docs/conf.py index d118757cbd3..d3018bc5395 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -113,6 +113,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 ------------------------------------------ -- 2.20.1