Use builtin inform syntax highlighting
[ibg.git] / conf.py
1 # -*- coding: utf-8 -*-
2 #
3 # Inform Beginner's Guide documentation build configuration file, created by
4 # sphinx-quickstart on Tue Mar 29 07:50:39 2016.
5 #
6 # This file is execfile()d with the current directory set to its
7 # containing dir.
8 #
9 # Note that not all possible configuration values are present in this
10 # autogenerated file.
11 #
12 # All configuration values have a default; values that are commented out
13 # serve to show the default.
14
15 import sys
16 import os
17 import shlex
18
19 # If extensions (or modules to document with autodoc) are in another directory,
20 # add these directories to sys.path here. If the directory is relative to the
21 # documentation root, use os.path.abspath to make it absolute, like shown here.
22 sys.path.insert(0, os.path.abspath('tools'))
23
24 from transcript import TranscriptLexer
25
26 # Setup function.
27 def setup(app):
28     app.add_lexer('transcript', TranscriptLexer())
29
30 # -- General configuration ------------------------------------------------
31
32 # If your documentation needs a minimal Sphinx version, state it here.
33 #needs_sphinx = '1.0'
34
35 # Add any Sphinx extension module names here, as strings. They can be
36 # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
37 # ones.
38 extensions = [
39     'sphinx.ext.todo',
40 ]
41
42 # Add any paths that contain templates here, relative to this directory.
43 templates_path = ['templates']
44
45 # The suffix(es) of source filenames.
46 source_suffix = ['.rst']
47
48 # The encoding of source files.
49 #source_encoding = 'utf-8-sig'
50
51 # The master toctree document.
52 master_doc = 'index'
53
54 # General information about the project.
55 project = u'Inform Beginner\'s Guide'
56 author = u'Roger Firth and Sonja Kesserich'
57 copyright = u'2016, ' + author
58
59 # The version info for the project you're documenting, acts as replacement for
60 # |version| and |release|, also used in various other places throughout the
61 # built documents.
62 #
63 # The short X.Y version.
64 version = '3'
65 # The full version, including alpha/beta/rc tags.
66 release = version
67
68 # The language for content autogenerated by Sphinx. Refer to documentation
69 # for a list of supported languages.
70 #
71 # This is also used if you do content translation via gettext catalogs.
72 # Usually you set "language" from the command line for these cases.
73 language = None
74
75 # There are two options for replacing |today|: either, you set today to some
76 # non-false value, then it is used:
77 #today = ''
78 # Else, today_fmt is used as the format for a strftime call.
79 #today_fmt = '%B %d, %Y'
80
81 # List of patterns, relative to source directory, that match files and
82 # directories to ignore when looking for source files.
83 exclude_patterns = ['output']
84
85 # The reST default role (used for this markup: `text`) to use for all
86 # documents.
87 default_role = "any"
88
89 # If true, '()' will be appended to :func: etc. cross-reference text.
90 #add_function_parentheses = True
91
92 # If true, the current module name will be prepended to all description
93 # unit titles (such as .. function::).
94 #add_module_names = True
95
96 # If true, sectionauthor and moduleauthor directives will be shown in the
97 # output. They are ignored by default.
98 #show_authors = False
99
100 # The name of the Pygments (syntax highlighting) style to use.
101 pygments_style = 'default'
102
103 # The default Pygments highlight language.
104 highlight_language = 'none'
105
106 # A list of ignored prefixes for module index sorting.
107 #modindex_common_prefix = []
108
109 # If true, keep warnings as "system message" paragraphs in the built documents.
110 #keep_warnings = False
111
112 # If true, `todo` and `todoList` produce output, else they produce nothing.
113 todo_include_todos = True
114
115
116 # -- Options for HTML output ----------------------------------------------
117
118 # The theme to use for HTML and HTML Help pages.  See the documentation for
119 # a list of builtin themes.
120 html_theme = 'alabaster'
121
122 # Theme options are theme-specific and customize the look and feel of a theme
123 # further.  For a list of options available for each theme, see the
124 # documentation.
125 html_theme_options = {
126     'font_family': 'Georgia',
127     'head_font_family': 'Georgia',
128 }
129
130 # Add any paths that contain custom themes here, relative to this directory.
131 #html_theme_path = []
132
133 # The name for this set of Sphinx documents.  If None, it defaults to
134 # "<project> v<release> documentation".
135 html_title = project
136
137 # A shorter title for the navigation bar.  Default is the same as html_title.
138 #html_short_title = None
139
140 # The name of an image file (relative to this directory) to place at the top
141 # of the sidebar.
142 #html_logo = None
143
144 # The name of an image file (within the static path) to use as favicon of the
145 # docs.  This file should be a Windows icon file (.ico) being 16x16 or 32x32
146 # pixels large.
147 #html_favicon = None
148
149 # Add any paths that contain custom static files (such as style sheets) here,
150 # relative to this directory. They are copied after the builtin static files,
151 # so a file named "default.css" will overwrite the builtin "default.css".
152 html_static_path = ['static']
153
154 # Add any extra paths that contain custom files (such as robots.txt or
155 # .htaccess) here, relative to this directory. These files are copied
156 # directly to the root of the documentation.
157 #html_extra_path = []
158
159 # If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
160 # using the given strftime format.
161 #html_last_updated_fmt = '%b %d, %Y'
162
163 # If true, SmartyPants will be used to convert quotes and dashes to
164 # typographically correct entities.
165 #html_use_smartypants = True
166
167 # Custom sidebar templates, maps document names to template names.
168 #html_sidebars = {}
169
170 # Additional templates that should be rendered to pages, maps page names to
171 # template names.
172 #html_additional_pages = {}
173
174 # If false, no module index is generated.
175 #html_domain_indices = True
176
177 # If false, no index is generated.
178 #html_use_index = True
179
180 # If true, the index is split into individual pages for each letter.
181 #html_split_index = False
182
183 # If true, links to the reST sources are added to the pages.
184 #html_show_sourcelink = True
185
186 # If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
187 #html_show_sphinx = True
188
189 # If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
190 #html_show_copyright = True
191
192 # If true, an OpenSearch description file will be output, and all pages will
193 # contain a <link> tag referring to it.  The value of this option must be the
194 # base URL from which the finished HTML is served.
195 #html_use_opensearch = ''
196
197 # This is the file name suffix for HTML files (e.g. ".xhtml").
198 #html_file_suffix = None
199
200 # Language to be used for generating the HTML full-text search index.
201 # Sphinx supports the following languages:
202 #   'da', 'de', 'en', 'es', 'fi', 'fr', 'hu', 'it', 'ja'
203 #   'nl', 'no', 'pt', 'ro', 'ru', 'sv', 'tr'
204 #html_search_language = 'en'
205
206 # A dictionary with options for the search language support, empty by default.
207 # Now only 'ja' uses this config value
208 #html_search_options = {'type': 'default'}
209
210 # The name of a javascript file (relative to the configuration directory) that
211 # implements a search results scorer. If empty, the default will be used.
212 #html_search_scorer = 'scorer.js'
213
214 # Output file base name for HTML help builder.
215 htmlhelp_basename = 'IBG'
216
217 # -- Options for LaTeX output ---------------------------------------------
218
219 latex_elements = {
220     # The paper size ('letterpaper' or 'a4paper').
221     'papersize': 'a4paper',
222
223     # The font size ('10pt', '11pt' or '12pt').
224     'pointsize': '10pt',
225
226     # Additional stuff for the LaTeX preamble.
227     #'preamble': '',
228
229     # Latex figure (float) alignment
230     #'figure_align': 'htbp',
231 }
232
233 # Grouping the document tree into LaTeX files. List of tuples
234 # (source start file, target name, title,
235 #  author, documentclass [howto, manual, or own class]).
236 latex_documents = [
237     (master_doc, 'IBG.tex', project, author, 'manual'),
238 ]
239
240 # The name of an image file (relative to this directory) to place at the top of
241 # the title page.
242 #latex_logo = None
243
244 # For "manual" documents, if this is true, then toplevel headings are parts,
245 # not chapters.
246 #latex_use_parts = False
247
248 # If true, show page references after internal links.
249 #latex_show_pagerefs = False
250
251 # If true, show URL addresses after external links.
252 #latex_show_urls = False
253
254 # Documents to append as an appendix to all manuals.
255 #latex_appendices = []
256
257 # If false, no module index is generated.
258 #latex_domain_indices = True
259
260
261 # -- Options for manual page output ---------------------------------------
262
263 # One entry per manual page. List of tuples
264 # (source start file, name, description, authors, manual section).
265 man_pages = [
266     (master_doc, 'informbeginnersguide', u'Inform Beginner\'s Guide',
267      [author], 1)
268 ]
269
270 # If true, show URL addresses after external links.
271 #man_show_urls = False
272
273
274 # -- Options for Texinfo output -------------------------------------------
275
276 # Grouping the document tree into Texinfo files. List of tuples
277 # (source start file, target name, title, author,
278 #  dir menu entry, description, category)
279 texinfo_documents = [
280   (master_doc, 'ibg', u'Inform Beginner\'s Guide',
281    author, 'Inform Beginners Guide', 'Beginner\'s guide to Inform.',
282    'Games'),
283 ]
284
285 # Documents to append as an appendix to all manuals.
286 #texinfo_appendices = []
287
288 # If false, no module index is generated.
289 #texinfo_domain_indices = True
290
291 # How to display URL addresses: 'footnote', 'no', or 'inline'.
292 #texinfo_show_urls = 'footnote'
293
294 # If true, do not generate a @detailmenu in the "Top" node's menu.
295 #texinfo_no_detailmenu = False