From 3b190b826edaf8df840ce7e5003f5e50836bc570 Mon Sep 17 00:00:00 2001 From: Martin Atkins Date: Sat, 25 Aug 2018 17:06:04 -0700 Subject: [PATCH] guide: Disable the autoapi extension This extension isn't working well for Go, so we're not using it for now. --- guide/conf.py | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/guide/conf.py b/guide/conf.py index 8b3ecfa..099cdcd 100644 --- a/guide/conf.py +++ b/guide/conf.py @@ -33,7 +33,6 @@ extensions = [ 'sphinx.ext.githubpages', 'sphinxcontrib.golangdomain', 'sphinx.ext.autodoc', - 'autoapi.extension', ] # Add any paths that contain templates here, relative to this directory. @@ -156,13 +155,3 @@ texinfo_documents = [ # If true, `todo` and `todoList` produce output, else they produce nothing. todo_include_todos = True - -autoapi_type = 'go' -autoapi_dirs = [ - os.path.join(os.path.dirname(__file__), '..', x) - for x in ['gohcl', 'hcl', 'hcldec', 'hcled', 'hclparse', 'hcltest', 'hclwrite'] -] -autoapi_root = 'api' -autoapi_add_toctree_entry = False -autoapi_keep_files = True -autoapi_generate_api_docs = False