cpython: 6b72b4b79aef (original) (raw)

Mercurial > cpython

changeset 99812:6b72b4b79aef 2.7

Issue20969 - Set the Epub Author and Epub Publisher in Python docs.

Senthil Kumaran senthil@uthcode.com
date Fri, 08 Jan 2016 01:05:57 -0800
parents ff3655d6c257
children 99f5276e4197
files Doc/conf.py
diffstat 1 files changed, 8 insertions(+), 0 deletions(-)[+] [-] Doc/conf.py 8

line wrap: on

line diff

--- a/Doc/conf.py +++ b/Doc/conf.py @@ -135,6 +135,14 @@ latex_appendices = ['glossary', 'about',

Get LaTeX to handle Unicode correctly

latex_elements = {'inputenc': r'\usepackage[utf8x]{inputenc}', 'utf8extra': ''} + +# Options for Epub output +# ----------------------- + +epub_author = 'Python Documentation Authors' +epub_publisher = 'Python Software Foundation' + +

Options for the coverage checker

--------------------------------