From c9f0a90456f81c02d96b96dc3bc3ef23a45dc80c Mon Sep 17 00:00:00 2001 From: Ben Darnell Date: Sat, 11 Aug 2012 09:07:33 -0700 Subject: [PATCH] Add latex_documents configuration so readthedocs can build pdfs of the docs. --- website/sphinx/conf.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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), + ] -- 2.47.2