mirror of
https://github.com/metosin/reitit.git
synced 2025-12-18 00:41:12 +00:00
Enables matching URLs with %-encoded chars, and decodes path params. Currently Reitit cannot handle %-encoded paths, even though they can be quite common (like `/search/my random search string`) E.g.: Successfully match `/space in path` to `/space%20in%20path` Match `/path/:param1` to `/path/foo%20bar` and see `:param1` => `"foo bar"` in path params Does not apply %-decoding to routes, only URLs Does not guarantee decoding '+' into a space. (Java's URLDecoder supports it, but it shouldn't for URL path part.) |
||
|---|---|---|
| .. | ||
| reitit | ||
| reitit-core | ||
| reitit-frontend | ||
| reitit-ring | ||
| reitit-schema | ||
| reitit-spec | ||
| reitit-swagger | ||
| reitit-swagger-ui | ||