diff options
author | Lars-Dominik Braun <lars@6xq.net> | 2019-07-29 15:34:50 +0200 |
---|---|---|
committer | Lars-Dominik Braun <lars@6xq.net> | 2019-07-29 15:35:16 +0200 |
commit | 949dd6d2a14f11036d251ef7d11607a214389d17 (patch) | |
tree | dc4d31ffed9d2e8b02440569ec6fc9d85d4e57b8 /doc/conf.py | |
parent | 3433889e1c04881eba0bbd1e211beb544123dd57 (diff) | |
download | crocoite-949dd6d2a14f11036d251ef7d11607a214389d17.tar.gz crocoite-949dd6d2a14f11036d251ef7d11607a214389d17.tar.bz2 crocoite-949dd6d2a14f11036d251ef7d11607a214389d17.zip |
doc: Auto-generate list of supported click selectors
Using shinx plugin. Also improve click selector descriptions for this
purpose.
Diffstat (limited to 'doc/conf.py')
-rw-r--r-- | doc/conf.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/conf.py b/doc/conf.py index 26747b4..8336c27 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- +import os, sys # -- Project information ----------------------------------------------------- @@ -8,9 +9,11 @@ author = 'crocoite contributors' # -- General configuration --------------------------------------------------- +sys.path.append(os.path.abspath("./_ext")) extensions = [ 'sphinx.ext.viewcode', 'sphinx.ext.autodoc', + 'clicklist', ] # Add any paths that contain templates here, relative to this directory. |