I have defined a route as followed in my routing.yml file :
route_name:
path: "/dashboard#messages/{id}"
However when I ask Symfony to generate that route, I get :
/dashboard%23messages/12345
How can I skip the encoding part of the route generation? Or how can I escape the #
char in the path definition?
PS : Working with a (big) legacy system, I cannot change the urls.
$node->addChild('settings', ['route' => 'user_settings', 'routeParameters' =>['_fragment' => 'password']])
– Berhley