From 3fd5a73117f950158be839375dc6573d50b83fee Mon Sep 17 00:00:00 2001
From: Christoph Neuroth 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 &, <, >, - ", ', and / + ", and ' with their unescaped counterparts.