Add chapter 7.
[ibg.git] / conf.py
diff --git a/conf.py b/conf.py
index 7546c7521c18936f4d56ae803ab097280522dbcf..c153fcb67f56d87737181daf79676e9a14c2926f 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 ------------------------------------------------