diff --git a/src/routes.rs b/src/routes.rs index b8f0f9e..edce7ba 100644 --- a/src/routes.rs +++ b/src/routes.rs @@ -19,7 +19,9 @@ const FRAGMENT_ENCODE_SET: &AsciiSet = &CONTROLS .add(b'<') .add(b'>') .add(b'`') - .add(b'+'); + .add(b'+') + .add(b'&') // Interpreted as a GET query + .add(b'#'); // Interpreted as a hyperlink section target type StateData = Data>>;