mirror of
https://github.com/metosin/reitit.git
synced 2025-12-22 10:31: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.) |
||
|---|---|---|
| .. | ||
| src/reitit | ||
| project.clj | ||