gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [taler-docs] branch master updated: add README and allow ma


From: gnunet
Subject: [GNUnet-SVN] [taler-docs] branch master updated: add README and allow markdown sources
Date: Thu, 29 Aug 2019 17:38:37 +0200

This is an automated email from the git hooks/post-receive script.

dold pushed a commit to branch master
in repository docs.

The following commit(s) were added to refs/heads/master by this push:
     new 26f7093  add README and allow markdown sources
26f7093 is described below

commit 26f70933dcc0cfb8b5fc0cdf4f9908a74748f330
Author: Florian Dold <address@hidden>
AuthorDate: Thu Aug 29 17:38:33 2019 +0200

    add README and allow markdown sources
---
 README  |  6 ++++++
 conf.py | 10 +++++++---
 2 files changed, 13 insertions(+), 3 deletions(-)

diff --git a/README b/README
new file mode 100644
index 0000000..55a9c43
--- /dev/null
+++ b/README
@@ -0,0 +1,6 @@
+This repository contains the documentation for all main GNU Taler components.
+
+Before building the documentation, make sure that you have the required
+dependencies installed using pip3:
+
+$ pip3 install --user --upgrade recommonmark sphinx
diff --git a/conf.py b/conf.py
index 47f494f..2558c78 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'

-- 
To stop receiving notification emails like this one, please contact
address@hidden.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]