From 1225e7806156de61f343928c227e32bbff44059e Mon Sep 17 00:00:00 2001 From: "Coren \"Kern\" Frankel" <104476731+coren-frankel@users.noreply.github.com> Date: Sat, 7 Sep 2024 12:16:18 -0600 Subject: [PATCH] replace documentation links in README (#369) --- README.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.rst b/README.rst index 091ef4c..8dce980 100644 --- a/README.rst +++ b/README.rst @@ -32,7 +32,7 @@ Simple Usage ~~~~~~~~~~~~ In the simplest case, initialize the Flask-Cors extension with default arguments in order to allow CORS for all domains on all routes. -See the full list of options in the `documentation `__. +See the full list of options in the `documentation `__. .. code:: python @@ -51,7 +51,7 @@ Resource specific CORS ^^^^^^^^^^^^^^^^^^^^^^ Alternatively, you can specify CORS options on a resource and origin level of granularity by passing a dictionary as the `resources` option, mapping paths to a set of options. -See the full list of options in the `documentation `__. +See the full list of options in the `documentation `__. .. code:: python @@ -67,7 +67,7 @@ Route specific CORS via decorator This extension also exposes a simple decorator to decorate flask routes with. Simply add ``@cross_origin()`` below a call to Flask's ``@app.route(..)`` to allow CORS on a given route. -See the full list of options in the `decorator documentation `__. +See the full list of options in the `decorator documentation `__. .. code:: python @@ -79,7 +79,7 @@ See the full list of options in the `decorator documentation `__ +For a full list of options, please see the full `documentation `__ Troubleshooting ---------------