From facf1ca627601a154d363ff837d75edd921236d4 Mon Sep 17 00:00:00 2001 From: Dan <14043624+delivrance@users.noreply.github.com> Date: Sat, 30 Dec 2017 22:00:26 +0100 Subject: [PATCH] Don't show source files on live docs --- docs/source/conf.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/source/conf.py b/docs/source/conf.py index 0f3cf1bd..00835b5f 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -39,6 +39,9 @@ extensions = [ 'sphinx.ext.napoleon' ] +# Don't show source files on docs +html_show_sourcelink = False + # Order by source, not alphabetically autodoc_member_order = 'bysource'