summaryrefslogtreecommitdiff
path: root/conf.py
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2019-08-29 17:38:33 +0200
committerFlorian Dold <florian.dold@gmail.com>2019-08-29 17:38:33 +0200
commit26f70933dcc0cfb8b5fc0cdf4f9908a74748f330 (patch)
tree58939d3594fb8594e72f195fb9d0c2d4cafeda91 /conf.py
parentee1786d6a56efc2b59f3b2ae5e5c9d20a11dbcec (diff)
downloaddocs-26f70933dcc0cfb8b5fc0cdf4f9908a74748f330.tar.gz
docs-26f70933dcc0cfb8b5fc0cdf4f9908a74748f330.tar.bz2
docs-26f70933dcc0cfb8b5fc0cdf4f9908a74748f330.zip
add README and allow markdown sources
Diffstat (limited to 'conf.py')
-rw-r--r--conf.py10
1 files changed, 7 insertions, 3 deletions
diff --git a/conf.py b/conf.py
index 47f494ff..2558c784 100644
--- a/conf.py
+++ b/conf.py
@@ -51,14 +51,18 @@ extensions = [
'tsref',
'sphinx.ext.todo',
'sphinx.ext.imgmath',
- 'httpdomain.httpdomain'
+ 'httpdomain.httpdomain',
+ 'recommonmark',
]
# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
-# The suffix of source filenames.
-source_suffix = '.rst'
+source_suffix = {
+ '.rst': 'restructuredtext',
+ '.txt': 'markdown',
+ '.md': 'markdown',
+}
# The encoding of source files.
#source_encoding = 'utf-8-sig'