summaryrefslogtreecommitdiff
path: root/docs/user/conf.py
diff options
context:
space:
mode:
authorAdam Tauber <asciimoo@gmail.com>2020-06-18 19:34:32 +0200
committerGitHub <noreply@github.com>2020-06-18 19:34:32 +0200
commit4a8a16559af18ab38d796aad303a827c8c640fa2 (patch)
tree3e056ebdc13610fa4e6a4f73ac9d0d044f10ba78 /docs/user/conf.py
parent0dc5bdb6ef602d00456eb1db96d45e2f42b2b7a4 (diff)
parent0616684baa58b86cac5df6546432d4372f965fe2 (diff)
Merge pull request #1803 from return42/filtron
Tooling Box to setup & maintain searx instances and services.
Diffstat (limited to 'docs/user/conf.py')
-rw-r--r--docs/user/conf.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/docs/user/conf.py b/docs/user/conf.py
new file mode 100644
index 000000000..53ade4b63
--- /dev/null
+++ b/docs/user/conf.py
@@ -0,0 +1,19 @@
+# -*- coding: utf-8; mode: python -*-
+"""Configuration for the Searx user handbook
+"""
+project = 'Searx User-HB'
+version = release = VERSION_STRING
+
+# Grouping the document tree into LaTeX files. List of tuples
+# (source start file, target name, title,
+# author, documentclass [howto, manual, or own class]).
+latex_documents = [
+ ('index' # startdocname
+ , 'searx-user-hb.tex' # targetname
+ , '' # take title from .rst
+ , author # author
+ , 'howto' # documentclass
+ , False # toctree_only
+ ),
+]
+