diff --git a/src/routes.rs b/src/routes.rs index a25af20..3942d98 100644 --- a/src/routes.rs +++ b/src/routes.rs @@ -21,7 +21,8 @@ const FRAGMENT_ENCODE_SET: &AsciiSet = &CONTROLS .add(b'`') .add(b'+') .add(b'&') // Interpreted as a GET query - .add(b'#'); // Interpreted as a hyperlink section target + .add(b'#') // Interpreted as a hyperlink section target + .add(b'\''); type StateData = Data>>;