brownplt / pyret-docs

The documentation for Pyret.
9 stars 18 forks source link

search: handle spaces #77

Closed sorawee closed 11 months ago

sorawee commented 11 months ago

Prior this PR, searching for "function plot" in the search bar resulted in "function%20plot" in the glossary page's search box. This PR fixes the issue by using URLSearchParams, which automatically calls decodeURIComponent for us. We also no longer need to parse the query string to a map ourselves.

URLSearchParams is supported in most major browsers since 2016/2017.

Fixes #75

jpolitz commented 11 months ago

Wonderful, thanks so much.