From 3fd5a73117f950158be839375dc6573d50b83fee Mon Sep 17 00:00:00 2001 From: Christoph Neuroth Date: Thu, 7 Nov 2013 13:13:27 +0100 Subject: [PATCH] update documentation to reflect #1189 `/` is now longer escaped to `/` and vice-versa --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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.