aboutsummaryrefslogtreecommitdiffstats
path: root/docs/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
commitbfae1dee44fe3610af1b07ceed6a5e3165c36685 (patch)
tree4d1c6f54cbf4abb4573fb01264c726bb522fe10d /docs/source/conf.py
parent1086af6ade742020de97efc478ba60368ad3f5fd (diff)
downloadlibrambutan-bfae1dee44fe3610af1b07ceed6a5e3165c36685.tar.gz
librambutan-bfae1dee44fe3610af1b07ceed6a5e3165c36685.zip
docs
Diffstat (limited to 'docs/source/conf.py')
-rw-r--r--docs/source/conf.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/docs/source/conf.py b/docs/source/conf.py
index 7f2b3b4..5fcb939 100644
--- a/docs/source/conf.py
+++ b/docs/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 --------------------------------------------------