diff --git a/Doc/source/conf.py b/Doc/source/conf.py index bd89fa127..e0ee7a936 100644 --- a/Doc/source/conf.py +++ b/Doc/source/conf.py @@ -48,17 +48,20 @@ master_doc = "index" # General information about the project. project = u"fontTools" -copyright = u"2018, Just van Rossum, Behdad Esfahbod, and the fontTools Authors. CC BY-SA 4.0" +copyright = u"2020, Just van Rossum, Behdad Esfahbod, and the fontTools Authors. CC BY-SA 4.0" author = u"Just van Rossum, Behdad Esfahbod, and the fontTools Authors" +# HTML page title +html_title = "fontTools Documentation" + # 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. # # The short X.Y version. -version = u"3.30" +version = u"4.0" # The full version, including alpha/beta/rc tags. -release = u"3.30" +release = u"4.0" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. @@ -74,7 +77,7 @@ exclude_patterns = [] # The name of the Pygments (syntax highlighting) style to use. # pygments_style = "sphinx" (the default sphinx docs style on RTD) -pygments_style = "paraiso-dark" +pygments_style = "default" # If true, `todo` and `todoList` produce output, else they produce nothing. todo_include_todos = True @@ -98,6 +101,11 @@ html_theme_options = {"display_version": False} # so a file named "default.css" will overwrite the builtin "default.css". html_static_path = ["_static"] +html_favicon = "assets/img/favicon.ico" + +# display the Sphinx attribution in the footer +html_show_sphinx = False + # -- Options for HTMLHelp output ------------------------------------------