We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a041c43 commit 9ad8575Copy full SHA for 9ad8575
1 file changed
README.md
@@ -249,9 +249,10 @@ type Routes interface {
249
```
250
251
Each routing method accepts a URL `pattern` and chain of `handlers`. The URL pattern
252
-supports named params (ie. `/users/{userID}`) and wildcards (ie. `/admin/*`). URL parameters
253
-can be fetched at runtime by calling `chi.URLParam(r, "userID")` for named parameters
254
-and `chi.URLParam(r, "*")` for a wildcard parameter.
+supports named params (ie. `/users/{userID}`), named path params that can contain slashes
+(ie. `/files/{path:*}` or `/files/{path:+}`), and wildcards (ie. `/admin/*`). URL
+parameters can be fetched at runtime by calling `chi.URLParam(r, "userID")` for named
255
+parameters and `chi.URLParam(r, "*")` for a wildcard parameter.
256
257
258
### Middleware handlers
0 commit comments