An open API service indexing awesome lists of open source software.

https://github.com/davidism/sphinxcontrib-log-cabinet

Organize changelog directives in Sphinx docs.
https://github.com/davidism/sphinxcontrib-log-cabinet

changelog documentation sphinx sphinx-extension

Last synced: over 1 year ago
JSON representation

Organize changelog directives in Sphinx docs.

Awesome Lists containing this project

README

          

sphinxcontrib-log-cabinet
=========================

Organize changelogs generated by ``versionadded``, ``versionchanged``,
``deprecated`` directives. The log will be sorted by newest to oldest
version. For HTML docs, older versions will be collapsed by default.

Install:

.. code-block:: text

$ pip install sphinxcontrib-log-cabinet

Enable:

.. code-block:: python

extensions = [
...,
"sphinxcontrib.log_cabinet",
...,
]

Configure:

``log_cabinet_collapse_all``

By default, current changes and deprecations are not collapsed. Set
this to ``True`` to collapse all changes.