JavaScript: Fix erroneous backticks in query help.

This commit is contained in:
Max Schaefer
2019-03-08 15:28:03 +00:00
parent 69a048d102
commit c74db8bbbc

View File

@@ -35,7 +35,7 @@ or garbled output.
<p>
Use a (well-tested) sanitization library if at all possible. These libraries are much more
likely to handle corner cases correctly than a custom implementation. For URI encoding,
you can use the standard `encodeURIComponent` and `decodeURIComponent` functions.
you can use the standard <code>encodeURIComponent</code> and <code>decodeURIComponent</code> functions.
</p>
<p>
Otherwise, make sure to always escape the escape character first, and unescape it last.