2015-09-22 01:42:15 -06:00
|
|
|
# -*- coding: utf-8 -*-
|
2016-06-14 21:22:04 -06:00
|
|
|
"""
|
|
|
|
DFHack documentation build configuration file
|
|
|
|
|
|
|
|
This file is execfile()d with the current directory set to its
|
|
|
|
containing dir.
|
|
|
|
|
|
|
|
Note that not all possible configuration values are present in this
|
|
|
|
autogenerated file.
|
|
|
|
|
|
|
|
All configuration values have a default; values that are commented out
|
|
|
|
serve to show the default.
|
|
|
|
"""
|
|
|
|
|
|
|
|
# pylint:disable=redefined-builtin
|
2015-09-22 01:42:15 -06:00
|
|
|
|
2020-06-17 18:32:30 -06:00
|
|
|
import datetime
|
2015-10-18 20:57:33 -06:00
|
|
|
from io import open
|
2015-09-22 01:42:15 -06:00
|
|
|
import os
|
2016-08-09 08:05:46 -06:00
|
|
|
import re
|
2016-06-14 21:22:04 -06:00
|
|
|
import shlex # pylint:disable=unused-import
|
2022-06-17 10:35:31 -06:00
|
|
|
import sphinx
|
2015-10-02 19:34:08 -06:00
|
|
|
import sys
|
2015-10-23 05:25:04 -06:00
|
|
|
|
|
|
|
|
2016-08-24 18:28:07 -06:00
|
|
|
# -- Support :dfhack-keybind:`command` ------------------------------------
|
2022-07-10 09:54:55 -06:00
|
|
|
# this is a custom directive that pulls info from default keybindings
|
2016-08-24 18:28:07 -06:00
|
|
|
|
|
|
|
from docutils import nodes
|
|
|
|
from docutils.parsers.rst import roles
|
|
|
|
|
2022-07-10 09:54:55 -06:00
|
|
|
def get_keybinds(root, files, keybindings):
|
|
|
|
"""Add keybindings in the specified files to the
|
|
|
|
given keybindings dict.
|
|
|
|
"""
|
|
|
|
for file in files:
|
|
|
|
with open(os.path.join(root, file)) as f:
|
|
|
|
lines = [l.replace('keybinding add', '').strip() for l in f.readlines()
|
|
|
|
if l.startswith('keybinding add')]
|
|
|
|
for k in lines:
|
|
|
|
first, command = k.split(' ', 1)
|
|
|
|
bind, context = (first.split('@') + [''])[:2]
|
|
|
|
if ' ' not in command:
|
|
|
|
command = command.replace('"', '')
|
|
|
|
tool = command.split(' ')[0].replace('"', '')
|
|
|
|
keybindings[tool] = keybindings.get(tool, []) + [
|
|
|
|
(command, bind.split('-'), context)]
|
|
|
|
|
|
|
|
def get_all_keybinds(root_dir):
|
2016-08-24 18:28:07 -06:00
|
|
|
"""Get the implemented keybinds, and return a dict of
|
|
|
|
{tool: [(full_command, keybinding, context), ...]}.
|
|
|
|
"""
|
|
|
|
keybindings = dict()
|
2022-07-10 09:54:55 -06:00
|
|
|
for root, _, files in os.walk(root_dir):
|
|
|
|
get_keybinds(root, files, keybindings)
|
2016-08-24 18:28:07 -06:00
|
|
|
return keybindings
|
|
|
|
|
2022-07-10 09:54:55 -06:00
|
|
|
KEYBINDS = get_all_keybinds('data/init')
|
2016-08-24 18:28:07 -06:00
|
|
|
|
|
|
|
|
|
|
|
# pylint:disable=unused-argument,dangerous-default-value,too-many-arguments
|
|
|
|
def dfhack_keybind_role_func(role, rawtext, text, lineno, inliner,
|
|
|
|
options={}, content=[]):
|
|
|
|
"""Custom role parser for DFHack default keybinds."""
|
|
|
|
roles.set_classes(options)
|
|
|
|
if text not in KEYBINDS:
|
2022-07-05 15:05:34 -06:00
|
|
|
return [], []
|
2016-08-24 18:28:07 -06:00
|
|
|
newnode = nodes.paragraph()
|
|
|
|
for cmd, key, ctx in KEYBINDS[text]:
|
|
|
|
n = nodes.paragraph()
|
|
|
|
newnode += n
|
2022-07-15 16:45:03 -06:00
|
|
|
n += nodes.strong('Keybinding:', 'Keybinding:')
|
|
|
|
n += nodes.inline(' ', ' ')
|
2016-08-24 18:28:07 -06:00
|
|
|
for k in key:
|
|
|
|
n += nodes.inline(k, k, classes=['kbd'])
|
|
|
|
if cmd != text:
|
|
|
|
n += nodes.inline(' -> ', ' -> ')
|
|
|
|
n += nodes.literal(cmd, cmd, classes=['guilabel'])
|
|
|
|
if ctx:
|
|
|
|
n += nodes.inline(' in ', ' in ')
|
|
|
|
n += nodes.literal(ctx, ctx)
|
|
|
|
return [newnode], []
|
|
|
|
|
|
|
|
|
|
|
|
roles.register_canonical_role('dfhack-keybind', dfhack_keybind_role_func)
|
|
|
|
|
2022-07-10 00:01:31 -06:00
|
|
|
# -- Autodoc for DFhack plugins and scripts -------------------------------
|
2015-11-04 06:23:45 -07:00
|
|
|
|
2022-07-10 00:01:31 -06:00
|
|
|
def doc_dir(dirname, files, prefix):
|
|
|
|
"""Yield (name, includepath) for each file in the directory."""
|
2015-10-28 21:26:37 -06:00
|
|
|
sdir = os.path.relpath(dirname, '.').replace('\\', '/').replace('../', '')
|
2022-07-10 00:01:31 -06:00
|
|
|
if prefix == '.':
|
|
|
|
prefix = ''
|
|
|
|
else:
|
|
|
|
prefix += '/'
|
2015-10-23 05:25:04 -06:00
|
|
|
for f in files:
|
2022-07-10 00:01:31 -06:00
|
|
|
if f[-4:] != '.rst':
|
2015-10-23 05:25:04 -06:00
|
|
|
continue
|
2022-07-10 00:01:31 -06:00
|
|
|
yield prefix + f[:-4], sdir + '/' + f
|
2015-10-23 05:25:04 -06:00
|
|
|
|
|
|
|
|
2016-08-24 18:28:07 -06:00
|
|
|
def doc_all_dirs():
|
|
|
|
"""Collect the commands and paths to include in our docs."""
|
2022-07-10 00:01:31 -06:00
|
|
|
tools = []
|
|
|
|
# TODO: as we scan the docs, parse out the tags and short descriptions and
|
|
|
|
# build a map for use in generating the tags pages and links in the tool
|
|
|
|
# doc footers
|
|
|
|
for root, _, files in os.walk('docs/plugins'):
|
|
|
|
tools.extend(doc_dir(root, files, os.path.relpath(root, 'docs/plugins')))
|
|
|
|
for root, _, files in os.walk('scripts/docs'):
|
|
|
|
tools.extend(doc_dir(root, files, os.path.relpath(root, 'scripts/docs')))
|
|
|
|
return tuple(tools)
|
2016-08-24 18:28:07 -06:00
|
|
|
|
|
|
|
DOC_ALL_DIRS = doc_all_dirs()
|
|
|
|
|
2022-07-10 00:01:31 -06:00
|
|
|
def generate_tag_indices():
|
|
|
|
#TODO: generate docs/tags/<tag>.rst with the tag description and links to the
|
|
|
|
# tools that have that tag
|
|
|
|
os.makedirs('docs/tags', mode=0o755, exist_ok=True)
|
2016-08-24 18:28:07 -06:00
|
|
|
|
2015-10-23 05:25:04 -06:00
|
|
|
|
2022-07-10 00:01:31 -06:00
|
|
|
def write_tool_docs():
|
2015-10-23 05:25:04 -06:00
|
|
|
"""
|
2022-07-10 00:01:31 -06:00
|
|
|
Creates a file for each tool with the ".. include::" directives to pull in
|
|
|
|
the original documentation. Then we generate a label and useful info in the
|
|
|
|
footer.
|
2016-06-14 21:22:04 -06:00
|
|
|
"""
|
2022-07-10 00:01:31 -06:00
|
|
|
for k in DOC_ALL_DIRS:
|
|
|
|
label = ('.. _{name}:\n\n').format(name=k[0])
|
|
|
|
# TODO: can we autogenerate the :dfhack-keybind: line? it would go beneath
|
|
|
|
# the tool header, which is currently in the middle of the included file.
|
|
|
|
# should we remove those headers from the doc files and just generate them
|
|
|
|
# here? That might be easier. But then where will the tags go? It would
|
|
|
|
# look better if they were above the keybinds, but then we'd be in the
|
|
|
|
# same situation.
|
|
|
|
include = ('.. include:: /{path}\n\n').format(path=k[1])
|
|
|
|
# TODO: generate a footer with links to tools that share at least one
|
|
|
|
# tag with this tool. Just the tool names, strung across the bottom of
|
|
|
|
# the page in one long wrapped line, similar to how the wiki does it
|
2015-10-23 05:25:04 -06:00
|
|
|
mode = 'w' if sys.version_info.major > 2 else 'wb'
|
2022-07-10 00:01:31 -06:00
|
|
|
os.makedirs(os.path.join('docs/tools', os.path.dirname(k[0])),
|
|
|
|
mode=0o755, exist_ok=True)
|
|
|
|
with open('docs/tools/{}.rst'.format(k[0]), mode) as outfile:
|
2022-07-10 00:58:11 -06:00
|
|
|
if k[0] != 'search' and k[0] != 'stonesense':
|
2022-07-10 00:01:31 -06:00
|
|
|
outfile.write(label)
|
|
|
|
outfile.write(include)
|
2015-10-23 05:25:04 -06:00
|
|
|
|
|
|
|
|
2016-08-24 18:28:07 -06:00
|
|
|
def all_keybinds_documented():
|
|
|
|
"""Check that all keybindings are documented with the :dfhack-keybind:
|
|
|
|
directive somewhere."""
|
2022-07-10 00:01:31 -06:00
|
|
|
undocumented_binds = set(KEYBINDS)
|
|
|
|
tools = set(i[0] for i in DOC_ALL_DIRS)
|
|
|
|
for t in tools:
|
|
|
|
with open(('./docs/tools/{}.rst').format(t)) as f:
|
|
|
|
tool_binds = set(re.findall(':dfhack-keybind:`(.*?)`', f.read()))
|
|
|
|
undocumented_binds -= tool_binds
|
2016-08-24 18:28:07 -06:00
|
|
|
if undocumented_binds:
|
2020-04-10 23:31:41 -06:00
|
|
|
raise ValueError('The following DFHack commands have undocumented '
|
2016-08-24 18:28:07 -06:00
|
|
|
'keybindings: {}'.format(sorted(undocumented_binds)))
|
2015-09-22 01:42:15 -06:00
|
|
|
|
2015-09-27 00:45:11 -06:00
|
|
|
|
2016-08-24 18:28:07 -06:00
|
|
|
# Actually call the docs generator and run test
|
2022-07-10 00:01:31 -06:00
|
|
|
write_tool_docs()
|
|
|
|
generate_tag_indices()
|
|
|
|
#all_keybinds_documented() # comment out while we're transitioning
|
2016-08-24 18:28:07 -06:00
|
|
|
|
2015-09-22 01:42:15 -06:00
|
|
|
# -- General configuration ------------------------------------------------
|
|
|
|
|
2020-07-04 00:15:05 -06:00
|
|
|
sys.path.append(os.path.join(os.path.abspath(os.path.dirname(__file__)), 'docs', 'sphinx_extensions'))
|
|
|
|
|
2015-09-22 01:42:15 -06:00
|
|
|
# If your documentation needs a minimal Sphinx version, state it here.
|
2020-07-03 20:43:21 -06:00
|
|
|
needs_sphinx = '1.8'
|
2015-09-22 01:42:15 -06:00
|
|
|
|
|
|
|
# Add any Sphinx extension module names here, as strings. They can be
|
|
|
|
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
|
|
|
|
# ones.
|
2020-07-04 00:15:05 -06:00
|
|
|
extensions = [
|
|
|
|
'sphinx.ext.extlinks',
|
|
|
|
'dfhack.changelog',
|
2020-10-08 22:27:22 -06:00
|
|
|
'dfhack.lexer',
|
2020-07-04 00:15:05 -06:00
|
|
|
]
|
2015-10-23 08:37:39 -06:00
|
|
|
|
2022-07-10 00:01:31 -06:00
|
|
|
sphinx_major_version = sphinx.version_info[0]
|
|
|
|
|
2022-06-17 10:35:31 -06:00
|
|
|
def get_caption_str(prefix=''):
|
|
|
|
return prefix + (sphinx_major_version >= 5 and '%s' or '')
|
|
|
|
|
2015-10-23 08:37:39 -06:00
|
|
|
# This config value must be a dictionary of external sites, mapping unique
|
|
|
|
# short alias names to a base URL and a prefix.
|
|
|
|
# See http://sphinx-doc.org/ext/extlinks.html
|
|
|
|
extlinks = {
|
2022-06-17 10:35:31 -06:00
|
|
|
'wiki': ('https://dwarffortresswiki.org/%s', get_caption_str()),
|
2015-10-23 08:37:39 -06:00
|
|
|
'forums': ('http://www.bay12forums.com/smf/index.php?topic=%s',
|
2022-06-17 10:35:31 -06:00
|
|
|
get_caption_str('Bay12 forums thread ')),
|
|
|
|
'dffd': ('https://dffd.bay12games.com/file.php?id=%s',
|
|
|
|
get_caption_str('DFFD file ')),
|
2020-10-09 17:04:40 -06:00
|
|
|
'bug': ('https://www.bay12games.com/dwarves/mantisbt/view.php?id=%s',
|
2022-06-17 10:35:31 -06:00
|
|
|
get_caption_str('Bug ')),
|
|
|
|
'source': ('https://github.com/DFHack/dfhack/tree/develop/%s',
|
|
|
|
get_caption_str()),
|
|
|
|
'source-scripts': ('https://github.com/DFHack/scripts/tree/master/%s',
|
|
|
|
get_caption_str()),
|
|
|
|
'issue': ('https://github.com/DFHack/dfhack/issues/%s',
|
|
|
|
get_caption_str('Issue ')),
|
|
|
|
'commit': ('https://github.com/DFHack/dfhack/commit/%s',
|
|
|
|
get_caption_str('Commit ')),
|
2015-10-23 08:37:39 -06:00
|
|
|
}
|
2015-09-22 01:42:15 -06:00
|
|
|
|
|
|
|
# Add any paths that contain templates here, relative to this directory.
|
2020-07-11 22:30:28 -06:00
|
|
|
templates_path = ["docs/templates"]
|
2015-09-22 01:42:15 -06:00
|
|
|
|
|
|
|
# The suffix(es) of source filenames.
|
|
|
|
# You can specify multiple suffix as a list of string:
|
2015-11-07 16:46:26 -07:00
|
|
|
source_suffix = ['.rst']
|
2015-09-22 01:42:15 -06:00
|
|
|
|
|
|
|
# The encoding of source files.
|
|
|
|
#source_encoding = 'utf-8-sig'
|
|
|
|
|
|
|
|
# The master toctree document.
|
2015-11-07 17:37:09 -07:00
|
|
|
master_doc = 'index'
|
2015-09-22 01:42:15 -06:00
|
|
|
|
|
|
|
# General information about the project.
|
|
|
|
project = 'DFHack'
|
2020-06-17 18:32:30 -06:00
|
|
|
copyright = '2015-%d, The DFHack Team' % datetime.datetime.now().year
|
2015-09-22 01:42:15 -06:00
|
|
|
author = 'The DFHack Team'
|
|
|
|
|
|
|
|
# The version info for the project you're documenting, acts as replacement for
|
|
|
|
# |version| and |release|, also used in various other places throughout the
|
|
|
|
# built documents.
|
2015-09-23 21:33:56 -06:00
|
|
|
|
2015-10-24 05:19:52 -06:00
|
|
|
def get_version():
|
2015-10-22 19:34:54 -06:00
|
|
|
"""Return the DFHack version string, from CMakeLists.txt"""
|
2016-06-14 21:22:04 -06:00
|
|
|
version = release = '' #pylint:disable=redefined-outer-name
|
2016-08-09 08:05:46 -06:00
|
|
|
pattern = re.compile(r'set\((df_version|dfhack_release)\s+"(.+?)"\)')
|
2015-10-22 19:34:54 -06:00
|
|
|
try:
|
2015-11-04 06:23:45 -07:00
|
|
|
with open('CMakeLists.txt') as f:
|
2015-10-22 19:34:54 -06:00
|
|
|
for s in f.readlines():
|
2016-08-09 08:05:46 -06:00
|
|
|
for match in pattern.findall(s.lower()):
|
|
|
|
if match[0] == 'df_version':
|
|
|
|
version = match[1]
|
|
|
|
elif match[0] == 'dfhack_release':
|
|
|
|
release = match[1]
|
2015-10-22 19:34:54 -06:00
|
|
|
return (version + '-' + release).replace('")\n', '')
|
|
|
|
except IOError:
|
2015-10-24 05:19:52 -06:00
|
|
|
return 'unknown'
|
2015-09-23 21:33:56 -06:00
|
|
|
|
2015-09-22 01:42:15 -06:00
|
|
|
# The short X.Y version.
|
|
|
|
# The full version, including alpha/beta/rc tags.
|
2015-10-24 05:19:52 -06:00
|
|
|
version = release = get_version()
|
2015-10-22 19:34:54 -06:00
|
|
|
|
2015-09-22 01:42:15 -06:00
|
|
|
# The language for content autogenerated by Sphinx. Refer to documentation
|
|
|
|
# for a list of supported languages.
|
|
|
|
# This is also used if you do content translation via gettext catalogs.
|
|
|
|
# Usually you set "language" from the command line for these cases.
|
2022-06-17 10:35:31 -06:00
|
|
|
language = 'en'
|
2015-09-22 01:42:15 -06:00
|
|
|
|
2016-06-14 21:22:04 -06:00
|
|
|
# strftime format for |today| and 'Last updated on:' timestamp at page bottom
|
|
|
|
today_fmt = html_last_updated_fmt = '%Y-%m-%d'
|
2015-09-22 01:42:15 -06:00
|
|
|
|
|
|
|
# List of patterns, relative to source directory, that match files and
|
|
|
|
# directories to ignore when looking for source files.
|
2015-11-07 17:37:09 -07:00
|
|
|
exclude_patterns = [
|
|
|
|
'README.md',
|
|
|
|
'build*',
|
2022-07-10 00:01:31 -06:00
|
|
|
'depends/*',
|
|
|
|
'docs/html/*',
|
|
|
|
'docs/text/*',
|
|
|
|
'docs/plugins/*',
|
2022-07-10 00:43:35 -06:00
|
|
|
'scripts/docs/*',
|
2015-11-07 17:37:09 -07:00
|
|
|
]
|
2015-09-22 01:42:15 -06:00
|
|
|
|
|
|
|
# The reST default role (used for this markup: `text`) to use for all
|
|
|
|
# documents.
|
2015-10-22 19:34:54 -06:00
|
|
|
default_role = 'ref'
|
2015-09-22 01:42:15 -06:00
|
|
|
|
|
|
|
# The name of the Pygments (syntax highlighting) style to use.
|
|
|
|
pygments_style = 'sphinx'
|
|
|
|
|
2020-10-08 21:30:59 -06:00
|
|
|
# The default language to highlight source code in.
|
2020-10-08 22:27:22 -06:00
|
|
|
highlight_language = 'dfhack'
|
2020-10-08 21:30:59 -06:00
|
|
|
|
2015-09-22 01:42:15 -06:00
|
|
|
# If true, `todo` and `todoList` produce output, else they produce nothing.
|
|
|
|
todo_include_todos = False
|
|
|
|
|
2020-07-10 00:11:03 -06:00
|
|
|
rst_prolog = """
|
|
|
|
.. |sphinx_min_version| replace:: {sphinx_min_version}
|
|
|
|
.. |dfhack_version| replace:: {dfhack_version}
|
|
|
|
""".format(
|
|
|
|
sphinx_min_version=needs_sphinx,
|
|
|
|
dfhack_version=version,
|
|
|
|
)
|
2015-09-22 01:42:15 -06:00
|
|
|
|
|
|
|
# -- Options for HTML output ----------------------------------------------
|
|
|
|
|
|
|
|
# The theme to use for HTML and HTML Help pages. See the documentation for
|
|
|
|
# a list of builtin themes.
|
2015-10-22 19:34:54 -06:00
|
|
|
html_theme = 'alabaster'
|
2015-09-22 01:42:15 -06:00
|
|
|
|
|
|
|
# Theme options are theme-specific and customize the look and feel of a theme
|
|
|
|
# further. For a list of options available for each theme, see the
|
|
|
|
# documentation.
|
2015-10-22 19:34:54 -06:00
|
|
|
html_theme_options = {
|
2018-05-12 09:02:34 -06:00
|
|
|
'logo': 'dfhack-logo.png',
|
2015-10-22 19:34:54 -06:00
|
|
|
'github_user': 'DFHack',
|
|
|
|
'github_repo': 'dfhack',
|
|
|
|
'github_button': False,
|
|
|
|
'travis_button': False,
|
2020-07-03 18:42:23 -06:00
|
|
|
'fixed_sidebar': True,
|
2015-10-22 19:34:54 -06:00
|
|
|
}
|
2015-09-22 01:42:15 -06:00
|
|
|
|
|
|
|
# The name for this set of Sphinx documents. If None, it defaults to
|
|
|
|
# "<project> v<release> documentation".
|
|
|
|
#html_title = None
|
|
|
|
|
|
|
|
# A shorter title for the navigation bar. Default is the same as html_title.
|
2015-10-22 19:34:54 -06:00
|
|
|
html_short_title = 'DFHack Docs'
|
2015-09-22 01:42:15 -06:00
|
|
|
|
|
|
|
# The name of an image file (relative to this directory) to place at the top
|
|
|
|
# of the sidebar.
|
|
|
|
#html_logo = None
|
|
|
|
|
|
|
|
# The name of an image file (within the static path) to use as favicon of the
|
|
|
|
# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
|
|
|
|
# pixels large.
|
2015-10-28 21:26:37 -06:00
|
|
|
html_favicon = 'docs/styles/dfhack-icon.ico'
|
2015-09-22 01:42:15 -06:00
|
|
|
|
|
|
|
# Add any paths that contain custom static files (such as style sheets) here,
|
|
|
|
# relative to this directory. They are copied after the builtin static files,
|
|
|
|
# so a file named "default.css" will overwrite the builtin "default.css".
|
2015-10-28 21:26:37 -06:00
|
|
|
html_static_path = ['docs/styles']
|
2015-09-22 01:42:15 -06:00
|
|
|
|
|
|
|
# Custom sidebar templates, maps document names to template names.
|
2015-10-22 19:34:54 -06:00
|
|
|
html_sidebars = {
|
|
|
|
'**': [
|
|
|
|
'about.html',
|
|
|
|
'relations.html',
|
|
|
|
'searchbox.html',
|
2015-11-06 17:35:44 -07:00
|
|
|
'localtoc.html',
|
2015-10-22 19:34:54 -06:00
|
|
|
]
|
|
|
|
}
|
2015-09-22 01:42:15 -06:00
|
|
|
|
|
|
|
# If false, no module index is generated.
|
2015-10-22 19:34:54 -06:00
|
|
|
html_domain_indices = False
|
2015-09-22 01:42:15 -06:00
|
|
|
|
|
|
|
# If false, no index is generated.
|
2015-10-22 19:34:54 -06:00
|
|
|
html_use_index = False
|
2015-09-22 01:42:15 -06:00
|
|
|
|
2020-07-03 20:43:21 -06:00
|
|
|
html_css_files = [
|
|
|
|
'dfhack.css',
|
|
|
|
]
|
|
|
|
|
2022-06-17 10:35:31 -06:00
|
|
|
if sphinx_major_version >= 5:
|
|
|
|
html_css_files.append('sphinx5.css')
|
|
|
|
|
2015-09-22 01:42:15 -06:00
|
|
|
# -- Options for LaTeX output ---------------------------------------------
|
|
|
|
|
|
|
|
# Grouping the document tree into LaTeX files. List of tuples
|
|
|
|
# (source start file, target name, title,
|
|
|
|
# author, documentclass [howto, manual, or own class]).
|
|
|
|
latex_documents = [
|
2016-06-14 21:22:04 -06:00
|
|
|
(master_doc, 'DFHack.tex', 'DFHack Documentation',
|
|
|
|
'The DFHack Team', 'manual'),
|
2015-09-22 01:42:15 -06:00
|
|
|
]
|
2020-07-15 19:19:37 -06:00
|
|
|
|
|
|
|
latex_toplevel_sectioning = 'part'
|
2022-07-11 18:24:17 -06:00
|
|
|
|
|
|
|
# -- Options for text output ---------------------------------------------
|
|
|
|
|
|
|
|
from sphinx.writers import text
|
|
|
|
|
|
|
|
text.MAXWIDTH = 52
|