Skip to content

Commit

Permalink
Minor style.
Browse files Browse the repository at this point in the history
  • Loading branch information
Julian committed May 5, 2019
1 parent 7f79dff commit d8822e2
Showing 1 changed file with 15 additions and 27 deletions.
42 changes: 15 additions & 27 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 80,12 @@
# A list of ignored prefixes for module index sorting.
# modindex_common_prefix = []

doctest_global_setup = dedent("""
doctest_global_setup = dedent(
"""
from __future__ import print_function
from jsonschema import *
""")
"""
)

intersphinx_mapping = {
"python": ("https://docs.python.org/2.7", None),
Expand Down Expand Up @@ -176,13 178,7 @@
# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title, author, documentclass [howto/manual]).
latex_documents = [
(
"index",
"jsonschema.tex",
u"jsonschema Documentation",
author,
"manual",
),
("index", "jsonschema.tex", u"jsonschema Documentation", author, "manual"),
]

# The name of an image file (relative to this directory) to place at the top of
Expand Down Expand Up @@ -210,15 206,7 @@

# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
(
"index",
"jsonschema",
u"jsonschema Documentation",
[author],
1,
),
]
man_pages = [("index", "jsonschema", u"jsonschema Documentation", [author], 1)]

# If true, show URL addresses after external links.
# man_show_urls = False
Expand All @@ -230,15 218,15 @@
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents = [
(
"index",
"jsonschema",
u"jsonschema Documentation",
author,
"jsonschema",
"One line description of project.",
"Miscellaneous",
),
(
"index",
"jsonschema",
u"jsonschema Documentation",
author,
"jsonschema",
"One line description of project.",
"Miscellaneous",
),
]

# Documents to append as an appendix to all manuals.
Expand Down

0 comments on commit d8822e2

Please sign in to comment.