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 33d3d9c commit 2838713Copy full SHA for 2838713
src/theme/searcher/searcher.js
@@ -296,7 +296,7 @@ window.search = window.search || {};
296
}
297
298
if (url.params.hasOwnProperty(URL_MARK_PARAM)) {
299
- var words = url.params[URL_MARK_PARAM].split(' ');
+ var words = decodeURIComponent(url.params[URL_MARK_PARAM]).split(' ');
300
marker.mark(words, {
301
exclude: mark_exclude
302
});
0 commit comments