Skip to main content

Run Black on Python code blocks in documentation files.

Project description

https://img.shields.io/github/actions/workflow/status/adamchainz/blacken-docs/main.yml.svg?branch=main&style=for-the-badge https://img.shields.io/badge/Coverage-100%25-success?style=for-the-badge https://img.shields.io/pypi/v/blacken-docs.svg?style=for-the-badge https://img.shields.io/badge/code%20style-black-000000.svg?style=for-the-badge pre-commit

Run Black on Python code blocks in documentation files.

Installation

Use pip:

python -m pip install blacken-docs

Python 3.9 to 3.14 supported.

Black 22.1.0+ supported.

pre-commit hook

You can also install blacken-docs as a pre-commit hook. Add the following to the repos section of your .pre-commit-config.yaml file (docs):

-   repo: https://github.com/adamchainz/blacken-docs
    rev: ""  # replace with latest tag on GitHub
    hooks:
    -   id: blacken-docs
        additional_dependencies:
        - black==22.12.0

Then, reformat your entire project:

pre-commit run blacken-docs --all-files

Since Black is a moving target, it’s best to pin it in additional_dependencies, and upgrade as appropriate. If you have Black installed as another hook, you can automate upgrading this pinned hook using sync-pre-commit-deps.

Usage

blacken-docs is a command line tool that rewrites documentation files in place. It supports Markdown, reStructuredText, and LaTex files. Additionally, you can run it on Python files to reformat Markdown and reStructuredText within docstrings.

Run blacken-docs with the filenames to rewrite:

blacken-docs README.rst

If any file is modified, blacken-docs exits nonzero.

blacken-docs does not have any ability to recurse through directories. Use the pre-commit integration, globbing, or another technique for applying to many files. For example, with git ls-files | xargs:

git ls-files -z -- '*.md' | xargs -0 blacken-docs

…or PowerShell’s ForEach-Object:

git ls-files -- '*.md' | %{blacken-docs $_}

blacken-docs currently passes the following options through to Black:

It also has the below extra options:

  • --check - Don’t modify files but indicate when changes are necessary with a message and non-zero return code.

  • -E / --skip-errors - Don’t exit non-zero for errors from Black (normally syntax errors).

  • --rst-literal-blocks - Also format literal blocks in reStructuredText files (more below).

History

blacken-docs was created by Anthony Sottile in 2018. At the end of 2022, Adam Johnson took over maintenance.

Supported code block formats

blacken-docs formats code blocks matching the following patterns.

Markdown

In “python” blocks:

```python
def hello():
    print("hello world")
```

And “pycon” blocks:

```pycon

>>> def hello():
...     print("hello world")
...

```

Prevent formatting within a block using blacken-docs:off and blacken-docs:on comments:

<!-- blacken-docs:off -->
```python
# whatever you want
```
<!-- blacken-docs:on -->

Within Python files, docstrings that contain Markdown code blocks may be reformatted:

def f():
    """docstring here

    ```python
    print("hello world")
    ```
    """

reStructuredText

In “python” blocks:

.. code-block:: python

    def hello():
        print("hello world")

In “pycon” blocks:

.. code-block:: pycon

    >>> def hello():
    ...     print("hello world")
    ...

Prevent formatting within a block using blacken-docs:off and blacken-docs:on comments:

.. blacken-docs:off

.. code-block:: python

    # whatever you want

.. blacken-docs:on

Use --rst-literal-blocks to also format literal blocks:

An example::

    def hello():
        print("hello world")

Literal blocks are marked with :: and can be any monospaced text by default. However Sphinx interprets them as Python code by default. If your project uses Sphinx and such a configuration, add --rst-literal-blocks to also format such blocks.

Within Python files, docstrings that contain reStructuredText code blocks may be reformatted:

def f():
    """docstring here

    .. code-block:: python

        print("hello world")
    """

LaTeX

In minted “python” blocks:

\begin{minted}{python}
def hello():
    print("hello world")
\end{minted}

In minted “pycon” blocks:

\begin{minted}{pycon}
>>> def hello():
...     print("hello world")
...
\end{minted}

In PythonTeX blocks:

\begin{pycode}
def hello():
    print("hello world")
\end{pycode}

Prevent formatting within a block using blacken-docs:off and blacken-docs:on comments:

% blacken-docs:off
\begin{minted}{python}
# whatever you want
\end{minted}
% blacken-docs:on

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

blacken_docs-1.20.0.tar.gz (15.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

blacken_docs-1.20.0-py3-none-any.whl (8.3 kB view details)

Uploaded Python 3

File details

Details for the file blacken_docs-1.20.0.tar.gz.

File metadata

  • Download URL: blacken_docs-1.20.0.tar.gz
  • Upload date:
  • Size: 15.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for blacken_docs-1.20.0.tar.gz
Algorithm Hash digest
SHA256 2d5b6caf6e7da5694b1eba97f9132c1ab9f14f221c82205ec473a6e74fbb2c6d
MD5 f8bdfb425ca444d30c85e32f54d02aa5
BLAKE2b-256 20bcc8fbeb90232c3afe0b369de4014c50925a5b3e6fcba5a784d96377da3d09

See more details on using hashes here.

Provenance

The following attestation bundles were made for blacken_docs-1.20.0.tar.gz:

Publisher: main.yml on adamchainz/blacken-docs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file blacken_docs-1.20.0-py3-none-any.whl.

File metadata

  • Download URL: blacken_docs-1.20.0-py3-none-any.whl
  • Upload date:
  • Size: 8.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for blacken_docs-1.20.0-py3-none-any.whl
Algorithm Hash digest
SHA256 a0d842811ee07802dec920d3cf831e21f6eb017712748b488489aa3688770f1e
MD5 ff155e55e91dc026d7c2b190f45f0876
BLAKE2b-256 5ce763af39c07bbb019feb1e4f89638410ec08101b59f094c51eb6bd5667b9e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for blacken_docs-1.20.0-py3-none-any.whl:

Publisher: main.yml on adamchainz/blacken-docs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page