Support for anchor tag - currently pollutes results
- Dominant language
- JavaScript
- Stars
- 132
- Forks
- 17
- PR merge metrics
- No merged PRs in 30d
Description
Love the library. Very simple to use. Did run into issues with anchors. if they are on the path then they leak into the produced results.
`(def routes [["/" :root] ["/:id" :root-with-id]])`
`(def my-router (r/router routes))`
`(r/match my-router "/") ; [:root nil nil]`
`(r/match my-router "/?a=1") ; [:root nil {:a "1"}]`
`(r/match my-router "/?a=1#asdf") ; [:root nil {:a "1#asdf"}]`
`(r/match my-router "/#asdf") ; [:root-with-id {:id "#asdf"} nil]`
`(r/match my-router "/my-id#asdf") ; [:root-with-id {:id "my-id#asdf"} nil]`
`(r/match my-router "/my-id?a=1#asdf") ; [:root-with-id {:id "my-id"} {:a "1#asdf"}]`
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.