From 32255dc30839d63a4f49593f8e16321834765ee1 Mon Sep 17 00:00:00 2001 From: Eric Holscher Date: Thu, 11 Oct 2018 16:46:28 +0200 Subject: [PATCH] Fix TOCTree not linking properly --- docs/conf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 3357f46..574f201 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -88,7 +88,7 @@ exclude_patterns = ['_build'] # The reST default role (used for this markup: `text`) to use for all # documents. -#default_role = None +default_role = None # If true, '()' will be appended to :func: etc. cross-reference text. #add_function_parentheses = True @@ -296,7 +296,7 @@ texinfo_documents = [ # app setup hook def setup(app): app.add_config_value('recommonmark_config', { - 'url_resolver': lambda url: github_doc_root + url, + #'url_resolver': lambda url: github_doc_root + url, 'auto_toc_tree_section': 'Contents', 'enable_eval_rst': True, 'enable_auto_doc_ref': True,