Browse Source

Add hyperlinks to Starlette and ASGI in middleware docs

Added links to external documentation for Starlette and ASGI to help users learn more about these technologies.
pull/14896/head
Milan Jethva 5 months ago
committed by GitHub
parent
commit
058d8eeb4d
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      docs/en/docs/advanced/middleware.md

2
docs/en/docs/advanced/middleware.md

@ -8,7 +8,7 @@ In this section we'll see how to use other middlewares.
## Adding ASGI middlewares { #adding-asgi-middlewares }
As **FastAPI** is based on Starlette and implements the <abbr title="Asynchronous Server Gateway Interface">ASGI</abbr> specification, you can use any ASGI middleware.
As **FastAPI** is based on [Starlette](https://www.starlette.io/) and implements the <abbr title="Asynchronous Server Gateway Interface">[ASGI](https://asgi.readthedocs.io/)</abbr> specification, you can use any ASGI middleware.
A middleware doesn't have to be made for FastAPI or Starlette to work, as long as it follows the ASGI spec.

Loading…
Cancel
Save