guide: Disable the autoapi extension

This extension isn't working well for Go, so we're not using it for now.
This commit is contained in:
Martin Atkins 2018-08-25 17:06:04 -07:00
parent 33120477c7
commit 3b190b826e
1 changed files with 0 additions and 11 deletions

View File

@ -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