diff --git a/docs/administration.rst b/docs/administration.rst index 1a9dfd548..51135e0fc 100644 --- a/docs/administration.rst +++ b/docs/administration.rst @@ -379,7 +379,7 @@ the naming scheme. The command takes no arguments and processes all your documents at once. -Learn how to use :ref:`Management Utilities`. +Learn how to use :ref:`Management Utilities`. .. _utilities-sanity-checker: diff --git a/docs/advanced_usage.rst b/docs/advanced_usage.rst index a727c94f8..78e12736a 100644 --- a/docs/advanced_usage.rst +++ b/docs/advanced_usage.rst @@ -179,13 +179,14 @@ Assumed you have ``/home/foo/paperless-ngx/scripts/post-consumption-example.sh`` You can pass that script into the consumer container via a host mount in your ``docker-compose.yml``. .. code:: bash - ... - consumer: - ... - volumes: - ... - - /home/paperless-ngx/scripts:/path/in/container/scripts/ - ... + + ... + consumer: + ... + volumes: + ... + - /home/paperless-ngx/scripts:/path/in/container/scripts/ + ... Example (docker-compose.yml): ``- /home/foo/paperless-ngx/scripts:/usr/src/paperless/scripts`` diff --git a/docs/extending.rst b/docs/extending.rst index 9a09b8f45..58eaaf070 100644 --- a/docs/extending.rst +++ b/docs/extending.rst @@ -115,7 +115,7 @@ Testing and code style: configuration. This is not ideal. But for now, make sure no settings except for DEBUG are overridden when testing. * Coding style is enforced by the Git pre-commit hooks. These will ensure your code is formatted and do some linting when you do a `git commit`. - * You can also run ``black`` manually to format your code +* You can also run ``black`` manually to format your code .. note::