From 949dd6d2a14f11036d251ef7d11607a214389d17 Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Mon, 29 Jul 2019 15:34:50 +0200 Subject: doc: Auto-generate list of supported click selectors Using shinx plugin. Also improve click selector descriptions for this purpose. --- doc/conf.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'doc/conf.py') 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. -- cgit v1.2.3