Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve the Sphinx config file #499

Merged
merged 3 commits into from Oct 13, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
15 changes: 7 additions & 8 deletions docs/conf.py
Expand Up @@ -48,7 +48,6 @@

# The suffix(es) of source filenames.
# You can specify multiple suffix as a list of string:
# source_suffix = ['.rst', '.md']
source_suffix = ['.rst', '.md']

# The encoding of source files.
Expand All @@ -58,9 +57,9 @@
master_doc = 'index'

# General information about the project.
project = u'Nox'
copyright = u'2016, Alethea Katherine Flowers'
author = u'Alethea Katherine Flowers'
project = 'Nox'
DiddiLeija marked this conversation as resolved.
Show resolved Hide resolved
copyright = '2016, Alethea Katherine Flowers'
author = 'Alethea Katherine Flowers'

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
Expand Down Expand Up @@ -257,8 +256,8 @@
# (source start file, target name, title,
# author, documentclass [howto, manual, or own class]).
latex_documents = [
(master_doc, 'nox.tex', u'nox Documentation',
u'Alethea Katherine Flowers', 'manual'),
(master_doc, 'nox.tex', 'nox Documentation',
'Alethea Katherine Flowers', 'manual'),
]

# The name of an image file (relative to this directory) to place at the top of
Expand Down Expand Up @@ -287,7 +286,7 @@
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
(master_doc, 'nox', u'nox Documentation',
(master_doc, 'nox', 'nox Documentation',
[author], 1)
]

Expand All @@ -301,7 +300,7 @@
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents = [
(master_doc, 'nox', u'nox Documentation',
(master_doc, 'nox', 'nox Documentation',
author, 'nox', 'One line description of project.',
'Miscellaneous'),
]
Expand Down