diff --git a/index.html b/index.html index 569a89430..6054d1ae2 100644 --- a/index.html +++ b/index.html @@ -1605,7 +1605,7 @@

Utility Functions

escape_.escape(string)
Escapes a string for insertion into HTML, replacing - &, <, >, ", ', and / characters. + &, <, >, ", and ' characters.

 _.escape('Curly, Larry & Moe');
@@ -1616,7 +1616,7 @@ 

Utility Functions


The opposite of escape, replaces &amp;, &lt;, &gt;, - &quot;, &#x27;, and &#x2F; + &quot;, and &#x27; with their unescaped counterparts.