From e850e48ecad18e231affadc4b8c4566f4ae55fcd Mon Sep 17 00:00:00 2001 From: liangfangping Date: Tue, 29 Mar 2022 10:54:05 +0800 Subject: [PATCH] set html_show_sourcelink false on sphinx * sphinx don't show sourcelink on html Signed-off-by: liangfangping --- docs/source/conf.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/source/conf.py b/docs/source/conf.py index a7956dfbe44..ee7a5a59cf9 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -64,3 +64,5 @@ html_theme_path = [sphinx_rtd_theme.get_html_theme_path()] html_static_path = ['_static'] master_doc= 'index' + +html_show_sourcelink = False -- Gitee