Added alt text to article image.

This commit is contained in:
Andrew Lalis 2023-09-27 16:22:36 -04:00
parent 8c65a213ad
commit 44f6e7f013
1 changed files with 1 additions and 1 deletions

View File

@ -157,7 +157,7 @@
In Handy-Httpd, we've provided a convenient method of adding middleware to the HTTP request handling flow with the <code>HttpRequestFilter</code>, <code>FilterChain</code>, and the <code>FilteredRequestHandler</code>. In Handy-Httpd, we've provided a convenient method of adding middleware to the HTTP request handling flow with the <code>HttpRequestFilter</code>, <code>FilterChain</code>, and the <code>FilteredRequestHandler</code>.
</p> </p>
<figure> <figure>
<img src="images/handy-httpd-filter-diagram.webp" style="max-width: 512px;"> <img src="images/handy-httpd-filter-diagram.webp" style="max-width: 512px;" alt="Handy-Httpd request filter diagram">
<figcaption>An illustration of how an HTTP request is processed by a FilteredRequestHandler: first it goes through all pre-request filters, then the underlying handler, and finally any post-request filters.</figcaption> <figcaption>An illustration of how an HTTP request is processed by a FilteredRequestHandler: first it goes through all pre-request filters, then the underlying handler, and finally any post-request filters.</figcaption>
</figure> </figure>
<p> <p>