🩹 fix the anchor tag and external references to fix the GH-generated link

pull/886/head
Roman 2020-10-05 11:09:14 +02:00
parent b6e8e7cca8
commit 180fedc0c4
3 changed files with 3 additions and 3 deletions

2
.github/README.md vendored
View File

@ -124,7 +124,7 @@ go get github.com/gofiber/fiber/v2
- [Rapid](https://dev.to/koddr/welcome-to-fiber-an-express-js-styled-fastest-web-framework-written-with-on-golang-497) server-side programming
- [Template engines](https://github.com/gofiber/template)
- [WebSocket support](https://github.com/gofiber/websocket)
- [Rate Limiter](https://docs.gofiber.io/middleware#limiter)
- [Rate Limiter](https://docs.gofiber.io/middleware/limiter)
- Translated in [15 languages](https://docs.gofiber.io/)
- And much more, [explore Fiber](https://docs.gofiber.io/)

View File

@ -1,5 +1,5 @@
# Cache
Cache middleware for [Fiber](https://github.com/gofiber/fiber) designed to intercept responses and cache them. This middleware will cache the `Body`, `Content-Type` and `StatusCode` using the `c.Path()` as unique identifier. Special thanks to [@codemicro](github.com/codemicro/fiber-cache) for creating this middleware for Fiber core!
Cache middleware for [Fiber](https://github.com/gofiber/fiber) designed to intercept responses and cache them. This middleware will cache the `Body`, `Content-Type` and `StatusCode` using the `c.Path()` as unique identifier. Special thanks to [@codemicro](https://github.com/codemicro/fiber-cache) for creating this middleware for Fiber core!
### Table of Contents
- [Signatures](#signatures)

View File

@ -9,7 +9,7 @@ Pprof middleware for [Fiber](https://github.com/gofiber/fiber) that serves via i
func New() fiber.Handler
```
### Example
### Examples
Import the middleware package that is part of the Fiber web framework
```go
import (