-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9440 from tronical/logo-regression-fix
Fix handling of local paths in html_logo/html_favicon directorives in conf.py
- Loading branch information
Showing
5 changed files
with
57 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
latex_documents = [ | ||
('index', 'test.tex', 'The basic Sphinx documentation for testing', 'Sphinx', 'report') | ||
] | ||
html_logo = "images/img.png" |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
The basic Sphinx documentation for testing | ||
========================================== | ||
|
||
Sphinx is a tool that makes it easy to create intelligent and beautiful | ||
documentation for Python projects (or other documents consisting of multiple | ||
reStructuredText sources), written by Georg Brandl. It was originally created | ||
for the new Python documentation, and has excellent facilities for Python | ||
project documentation, but C/C++ is supported as well, and more languages are | ||
planned. | ||
|
||
Sphinx uses reStructuredText as its markup language, and many of its strengths | ||
come from the power and straightforwardness of reStructuredText and its parsing | ||
and translating suite, the Docutils. | ||
|
||
features | ||
-------- | ||
|
||
Among its features are the following: | ||
|
||
* Output formats: HTML (including derivative formats such as HTML Help, Epub | ||
and Qt Help), plain text, manual pages and LaTeX or direct PDF output | ||
using rst2pdf | ||
* Extensive cross-references: semantic markup and automatic links | ||
for functions, classes, glossary terms and similar pieces of information | ||
* Hierarchical structure: easy definition of a document tree, with automatic | ||
links to siblings, parents and children | ||
* Automatic indices: general index as well as a module index | ||
* Code handling: automatic highlighting using the Pygments highlighter | ||
* Flexible HTML output using the Jinja 2 templating engine | ||
* Various extensions are available, e.g. for automatic testing of snippets | ||
and inclusion of appropriately formatted docstrings | ||
* Setuptools integration |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters