From c8729398ddb9ac82b00bbafaf24e8d37543e5b9e Mon Sep 17 00:00:00 2001 From: Jay Berkenbilt Date: Tue, 11 Jan 2022 11:49:33 -0500 Subject: Generate help content from manual This is a massive rewrite of the help text and cli.rst section of the manual. All command-line flags now have their own help and are specifically index. qpdf --help is completely redone. --- manual/conf.py | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'manual/conf.py') diff --git a/manual/conf.py b/manual/conf.py index 92e4a3de..3f334d8c 100644 --- a/manual/conf.py +++ b/manual/conf.py @@ -7,6 +7,10 @@ # To see the default sample conf.py, run sphinx-quickstart in an empty # directory. Most of the original comments and options were removed. import sphinx_rtd_theme # noQA F401 +import os +import sys + +sys.path.append(os.path.abspath("./_ext")) project = 'QPDF' copyright = '2005-2021, Jay Berkenbilt' @@ -16,6 +20,7 @@ release = '10.5.0' version = release extensions = [ 'sphinx_rtd_theme', + 'qpdf', ] html_theme = 'sphinx_rtd_theme' html_theme_options = { -- cgit v1.2.3-54-g00ecf