From 8f528ed2b13c309c9efb1ee6e1150ab3fce11d89 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Tue, 15 Feb 2022 17:21:07 -0800 Subject: [PATCH] Fix ReST warning --- docs/cli.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/cli.rst b/docs/cli.rst index 8ec3f9e..03689c1 100644 --- a/docs/cli.rst +++ b/docs/cli.rst @@ -1989,7 +1989,7 @@ Since `SpatiaLite `__ is com SpatiaLite helpers ================== -`SpatiaLite `_ adds geographic capability to SQLite (similar to how PostGIS builds on PostgreSQL). The `SpatiaLite cookbook `_ is a good resource for learning what's possible with it. +`SpatiaLite `_ adds geographic capability to SQLite (similar to how PostGIS builds on PostgreSQL). The `SpatiaLite cookbook `__ is a good resource for learning what's possible with it. You can convert an existing table to a geographic table by adding a geometry column, use the ``sqlite-utils add-geometry-column`` command:: @@ -2019,4 +2019,4 @@ Once you have a geometry column, you can speed up bounding box queries by adding $ sqlite-utils create-spatial-index spatial.db locations geometry -See the `SpatiaLite Cookbook `_ for examples of how to use a spatial index. +See this `SpatiaLite Cookbook recipe `__ for examples of how to use a spatial index.