aboutsummaryrefslogtreecommitdiffstats
path: root/source/conf.py
diff options
context:
space:
mode:
authorMarti Bolivar <mbolivar@mit.edu>2010-10-11 12:32:31 -0400
committerMarti Bolivar <mbolivar@mit.edu>2010-10-11 12:32:31 -0400
commit8de4fe4b0f3e28c99cac6dbf919dfa9b0009765f (patch)
tree73e76d401b11a23c97f8021b66e216efda223932 /source/conf.py
parent20b3718c015db98433da121485fa6bb7ab88faa7 (diff)
downloadlibrambutan-8de4fe4b0f3e28c99cac6dbf919dfa9b0009765f.tar.gz
librambutan-8de4fe4b0f3e28c99cac6dbf919dfa9b0009765f.zip
docs
Diffstat (limited to 'source/conf.py')
-rw-r--r--source/conf.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/source/conf.py b/source/conf.py
index 7f2b3b4..5fcb939 100644
--- a/source/conf.py
+++ b/source/conf.py
@@ -68,7 +68,11 @@ release = '0.0.7'
# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
-exclude_patterns = []
+exclude_patterns = ['epilog.rst']
+
+# Included at the end of every source file that is read.
+with open('epilog.rst', 'r') as ep:
+ rst_epilog = ep.read()
# The reST default role (used for this markup: `text`) to use for all
# documents.
@@ -91,6 +95,8 @@ pygments_style = 'sphinx'
# A list of ignored prefixes for module index sorting.
#modindex_common_prefix = []
+# Warn about all references where the target cannot be found.
+#nitpicky = True
# -- Options for HTML output --------------------------------------------------