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 db5877d commit 6e0f48eCopy full SHA for 6e0f48e
js/search.js
@@ -10,7 +10,7 @@ layout: null
10
var pair = vars[i].split("=");
11
12
if (pair[0] === variable) {
13
- return pair[1];
+ return decodeURIComponent(pair[1].replace(/\+/g, '%20')).trim();
14
}
15
16
0 commit comments