mirror of
https://github.com/CaiJimmy/hugo-theme-stack.git
synced 2025-02-17 09:18:38 +01:00
An extremely simple fix to decode special characters
This commit is contained in:
parent
839fbd0ecb
commit
9bce57279a
1 changed files with 2 additions and 2 deletions
|
@ -36,10 +36,10 @@
|
||||||
const wrongUrl = new URL(window.location.href);
|
const wrongUrl = new URL(window.location.href);
|
||||||
|
|
||||||
/// Get the search keyword from the wrong URL by removing all slashes and dashes
|
/// Get the search keyword from the wrong URL by removing all slashes and dashes
|
||||||
const searchKeyword = wrongUrl.pathname.split(/[/|-]/).join(' ').trim();
|
const searchKeyword = decodeURIComponent(wrongUrl.pathname).split(/[/|-]/).join(' ').trim();
|
||||||
|
|
||||||
document.getElementById('searchInput').setAttribute('value', searchKeyword);
|
document.getElementById('searchInput').setAttribute('value', searchKeyword);
|
||||||
</script>
|
</script>
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
{{ partialCached "footer/footer" . }}
|
{{ partialCached "footer/footer" . }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
Loading…
Add table
Reference in a new issue