diff options
author | Georg Brandl <georg@python.org> | 2009-04-09 19:04:44 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-04-09 19:04:44 +0000 |
commit | b349660d955e7c2aeb8eda4db35d93ff667e4a4c (patch) | |
tree | cebaa5e525b9ce7ec7180fec2a7e11f15dccfb11 /sphinx/quickstart.py | |
parent | 332f71c0c3da7e813513237f300c81ddeae5b60e (diff) | |
download | sphinx-git-b349660d955e7c2aeb8eda4db35d93ff667e4a4c.tar.gz |
Add html_show_copyright config val, patch by Wojtek Walczak.
Diffstat (limited to 'sphinx/quickstart.py')
-rw-r--r-- | sphinx/quickstart.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sphinx/quickstart.py b/sphinx/quickstart.py index e5b7cfaf5..0e6b3032e 100644 --- a/sphinx/quickstart.py +++ b/sphinx/quickstart.py @@ -174,6 +174,12 @@ html_static_path = ['%(dot)sstatic'] # If true, links to the reST sources are added to the pages. #html_show_sourcelink = True +# If true, "Created using Sphinx" is shown in the HTML footer. Default is True. +#html_show_sphinx = True + +# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True. +#html_show_copyright = True + # If true, an OpenSearch description file will be output, and all pages will # contain a <link> tag referring to it. The value of this option must be the # base URL from which the finished HTML is served. |