Percent-escape single quote
This commit is contained in:
parent
49e1c8ce0c
commit
411854385c
1 changed files with 2 additions and 1 deletions
|
@ -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<Arc<RwLock<State>>>;
|
||||
|
||||
|
|
Loading…
Reference in a new issue