Is it intentional? ``` > laroute.route('search', {q: 'this & that'}) "/home/search?q=this & that" ``` The `& that` is not part of `q` anymore because `&` is query string separator. It should be replaced with its percent encoding.