X-Git-Url: https://jxself.org/git/?p=ibg.git;a=blobdiff_plain;f=conf.py;h=c153fcb67f56d87737181daf79676e9a14c2926f;hp=7546c7521c18936f4d56ae803ab097280522dbcf;hb=b387dfc43dfc85d7ff0324e27b15ba8be6b91f0c;hpb=d243892ad9717d0d1cbb0dbc941b229b24a7f09e diff --git a/conf.py b/conf.py index 7546c75..c153fcb 100644 --- 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 ------------------------------------------------