From 9286c1ba432e890b1bb4b2a1f847b15364c1fa18 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Fri, 3 Nov 2023 20:55:19 -0700 Subject: [PATCH] Fixed some markup bugs --- docs/plugins.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/plugins.rst b/docs/plugins.rst index 8e1a37a..2135a9b 100644 --- a/docs/plugins.rst +++ b/docs/plugins.rst @@ -49,7 +49,7 @@ In that folder create two files. The first is a ``pyproject.toml`` file describi [project.entry-points.sqlite_utils] hello_world = "sqlite_utils_hello_world" -The ```[project.entry-points.sqlite_utils]`` section tells ``sqlite-tils`` which module to load when executing the plugin. +The ``[project.entry-points.sqlite_utils]`` section tells ``sqlite-utils`` which module to load when executing the plugin. Then create ``sqlite_utils_hello_world.py`` with the following content: @@ -75,7 +75,7 @@ Or pass the path to your plugin directory: .. code-block:: bash - sqlite-utils install -e `/dev/sqlite-utils-hello-world + sqlite-utils install -e /dev/sqlite-utils-hello-world Now, running this should execute your new command: