]> git.ipfire.org Git - thirdparty/paperless-ngx.git/commitdiff
Fix minor sphinx errors 322/head
authorMichael Shamoon <4887959+shamoon@users.noreply.github.com>
Mon, 14 Mar 2022 00:48:17 +0000 (17:48 -0700)
committerMichael Shamoon <4887959+shamoon@users.noreply.github.com>
Mon, 14 Mar 2022 00:48:17 +0000 (17:48 -0700)
docs/administration.rst
docs/advanced_usage.rst
docs/extending.rst

index 1a9dfd5488b4ba3e9f02113b0d43d32eba02a305..51135e0fc656f8aed72b6816ab35af0f9987caf0 100644 (file)
@@ -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<Management utilities>`.
+Learn how to use :ref:`Management Utilities<utilities-management-commands>`.
 
 
 .. _utilities-sanity-checker:
index a727c94f8680f29738abf43cbd395e184021d13d..78e12736a730627ddfdf9ef5474a423a30268962 100644 (file)
@@ -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``
 
index 9a09b8f456f2cd7460f46e37afbd7a8a6245936d..58eaaf070554983a3b20bd207503858a8194cf56 100644 (file)
@@ -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::