diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 16:12:08 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 16:12:08 +0000 |
commit | 0d286042a60f80eff5ced1f1800395537429b9d2 (patch) | |
tree | ba4a4b89d414179cf1dfac3354f317797e3fd832 /README.rst | |
parent | Initial commit. (diff) | |
download | python-pallets-sphinx-themes-0d286042a60f80eff5ced1f1800395537429b9d2.tar.xz python-pallets-sphinx-themes-0d286042a60f80eff5ced1f1800395537429b9d2.zip |
Adding upstream version 2.0.3.upstream/2.0.3upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | README.rst | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/README.rst b/README.rst new file mode 100644 index 0000000..2791ea7 --- /dev/null +++ b/README.rst @@ -0,0 +1,29 @@ +Pallets Sphinx Themes +===================== + +Themes for the Pallets projects. If you're writing an extension, use the +appropriate theme to make your documentation look consistent. + +Available themes: + +- flask +- jinja +- werkzeug +- click + +Install this package: + +.. code-block:: text + + pip install Pallets-Sphinx-Themes + +Enable the extension and choose the theme in ``docs/conf.py``: + +.. code-block:: python + + extensions = [ + "pallets_sphinx_themes", + ... + ] + + html_theme = "flask" |