From 5488af66d7f1b9b9e7121238bef7cf8c028d0f67 Mon Sep 17 00:00:00 2001 From: Tom Christie Date: Wed, 31 Oct 2018 09:42:07 +0000 Subject: [PATCH] Fix linking --- README.md | 12 ++++++------ docs/index.md | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 5421cdef..bf8f5e17 100644 --- a/README.md +++ b/README.md @@ -76,12 +76,12 @@ if __name__ == '__main__': Starlette does not have any hard dependencies, but the following are optional: -* `[requests][requests]` - Required if you want to use the `TestClient`. -* `[aiofiles][aiofiles]` - Required if you want to use `FileResponse` or `StaticFiles`. -* `[python-multipart][python-multipart]` - Required if you want to support form parsing, with `request.form()`. -* `[graphene][graphene]` - Required for GraphQL support. -* `[itsdangerous][itsdangerous]` - Required for SessionMiddleware support. -* `[ujson][ujson]` - Required if you want to use `UJSONResponse`. +* [`requests`][requests] - Required if you want to use the `TestClient`. +* [`aiofiles`][aiofiles] - Required if you want to use `FileResponse` or `StaticFiles`. +* [`python-multipart`][python-multipart] - Required if you want to support form parsing, with `request.form()`. +* [`graphene`][graphene] - Required for GraphQL support. +* [`itsdangerous`][itsdangerous] - Required for SessionMiddleware support. +* [`ujson`][ujson] - Required if you want to use `UJSONResponse`. You can install all of these with `pip3 install starlette[full]`. diff --git a/docs/index.md b/docs/index.md index 4efc6d10..ee184b56 100644 --- a/docs/index.md +++ b/docs/index.md @@ -75,12 +75,12 @@ if __name__ == '__main__': Starlette does not have any hard dependencies, but the following are optional: -* `[requests][requests]` - Required if you want to use the `TestClient`. -* `[aiofiles][aiofiles]` - Required if you want to use `FileResponse` or `StaticFiles`. -* `[python-multipart][python-multipart]` - Required if you want to support form parsing, with `request.form()`. -* `[graphene][graphene]` - Required for GraphQL support. -* `[itsdangerous][itsdangerous]` - Required for SessionMiddleware support. -* `[ujson][ujson]` - Required if you want to use `UJSONResponse`. +* [`requests`][requests] - Required if you want to use the `TestClient`. +* [`aiofiles`][aiofiles] - Required if you want to use `FileResponse` or `StaticFiles`. +* [`python-multipart`][python-multipart] - Required if you want to support form parsing, with `request.form()`. +* [`graphene`][graphene] - Required for GraphQL support. +* [`itsdangerous`][itsdangerous] - Required for SessionMiddleware support. +* [`ujson`][ujson] - Required if you want to use `UJSONResponse`. You can install all of these with `pip3 install starlette[full]`.