Skip to content
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/middleware/keyauth.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,7 @@
### Apply middleware in the handler

You can apply the middleware to specific routes or groups instead of globally. This example uses the default extractor (`FromAuthHeader`).
- `FromAuthHeader` expects a compliant [RFC 7235 `token68`](https://datatracker.ietf.org/doc/html/rfc7235#section-2.1) key value.

Check failure on line 172 in docs/middleware/keyauth.md

View workflow job for this annotation

GitHub Actions / markdownlint

Lists should be surrounded by blank lines

docs/middleware/keyauth.md:172 MD032/blanks-around-lists Lists should be surrounded by blank lines [Context: "- `FromAuthHeader` expects a c..."] https://github.com/DavidAnson/markdownlint/blob/v0.40.0/doc/md032.md

```go
package main
Expand Down
Loading