From: Ben Darnell Date: Sat, 11 Aug 2012 16:07:33 +0000 (-0700) Subject: Add latex_documents configuration so readthedocs can build pdfs of the docs. X-Git-Tag: v2.4.0~33 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c9f0a90456f81c02d96b96dc3bc3ef23a45dc80c;p=thirdparty%2Ftornado.git Add latex_documents configuration so readthedocs can build pdfs of the docs. --- diff --git a/website/sphinx/conf.py b/website/sphinx/conf.py index 84f833e64..d429c7241 100644 --- a/website/sphinx/conf.py +++ b/website/sphinx/conf.py @@ -48,7 +48,7 @@ coverage_ignore_functions = [ "doctests", "main", ] - + html_static_path = [os.path.abspath("../static")] html_style = "sphinx.css" highlight_language = "none" @@ -74,3 +74,7 @@ html_theme_options = dict( headfont="Calibri, sans-serif", stickysidebar=True, ) + +latex_documents = [ + ('index', 'tornado', 'Tornado Documentation', 'Facebook', 'manual', False), + ]