diff --git a/docs/conf.py b/docs/conf.py index 7830f41e6..7b72d401d 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -295,7 +295,10 @@ def setup(app): # taken from https://github.com/sphinx-doc/sphinx/blob/82dad44e5bd3776ecb6fd8ded656bc8151d0e63d/sphinx/util/requests.py#L42 user_agent = "Mozilla/5.0 (X11; Linux x86_64; rv:25.0) Gecko/20100101 Firefox/25.0" -linkcheck_ignore = [] +linkcheck_ignore = [ + r"https://www.patreon.com/postgrest", + r"https://blog.frankel.ch/poor-man-api", +] # sphinx-tabs configuration sphinx_tabs_disable_tab_closing = True diff --git a/docs/explanations/install.rst b/docs/explanations/install.rst index 8415a6ea9..73d7eaba8 100644 --- a/docs/explanations/install.rst +++ b/docs/explanations/install.rst @@ -185,7 +185,7 @@ When a pre-built binary does not exist for your system you can build the project You can build PostgREST from source with `Stack `_. It will install any necessary Haskell dependencies on your system. -* `Install Stack `_ for your platform +* `Install Stack `_ for your platform * Install Library Dependencies ===================== ======================================= diff --git a/docs/index.rst b/docs/index.rst index b0fb672cb..f96dcb3a3 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -218,7 +218,7 @@ Here are some companies that use PostgREST in production. * `Datrium `_ * `Drip Depot `_ * `Image-charts `_ -* `Moat `_ +* `Moat `_ * `Netwo `_ * `Nimbus `_ - See how Nimbus uses PostgREST in `Paul Copplestone's blog post `_. diff --git a/docs/references/api/functions.rst b/docs/references/api/functions.rst index 32b31657e..83b99b454 100644 --- a/docs/references/api/functions.rst +++ b/docs/references/api/functions.rst @@ -3,7 +3,7 @@ Functions as RPC ================ -*"A single resource can be the equivalent of a database function, with the power to abstract state changes over any number of storage items"* -- `Roy T. Fielding `_ +*"A single resource can be the equivalent of a database function, with the power to abstract state changes over any number of storage items"* -- `Roy T. Fielding `_ Functions can perform any operation allowed by PostgreSQL (read data, modify data, :ref:`raise errors `, and even DDL operations). Every function in the :ref:`exposed schema ` and accessible by the :ref:`active database role ` is executable under the :code:`/rpc` prefix.