Added chapter 16.
[ibg.git] / conf.py
diff --git a/conf.py b/conf.py
index 7546c7521c18936f4d56ae803ab097280522dbcf..ec350aeb1feaf2d43598d8790b40e37a4d4ba997 100644 (file)
--- a/conf.py
+++ b/conf.py
@@ -22,10 +22,12 @@ import codecs
 # documentation root, use os.path.abspath to make it absolute, like shown here.
 sys.path.insert(0, ".")
 
+from tools.int_fiction import Inform6Lexer
 from tools.transcript import TranscriptLexer
 
 # Setup function.
 def setup(app):
+    app.add_lexer('inform', Inform6Lexer())
     app.add_lexer('transcript', TranscriptLexer())
 
 # -- General configuration ------------------------------------------------
@@ -88,7 +90,7 @@ language = None
 
 # List of patterns, relative to source directory, that match files and
 # directories to ignore when looking for source files.
-exclude_patterns = ['config', 'output']
+exclude_patterns = ['config', 'output', 'tables']
 
 # The reST default role (used for this markup: `text`) to use for all
 # documents.