We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4e8ffb commit ae2c1d9Copy full SHA for ae2c1d9
analysis/src/Hover.ml
@@ -29,6 +29,7 @@ let encodeURIComponent text =
29
| '=' -> Buffer.add_string buf "%3D"
30
| '?' -> Buffer.add_string buf "%3F"
31
| '@' -> Buffer.add_string buf "%40"
32
+ | '%' -> Buffer.add_string buf "%25"
33
| c -> Buffer.add_char buf c);
34
loop (i + 1))
35
in
0 commit comments