source: frontend/node_modules/underscore/amd/_escapeMap.js

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 231 bytes
Line 
1define(function () {
2
3 // Internal list of HTML entities for escaping.
4 var escapeMap = {
5 '&': '&amp;',
6 '<': '&lt;',
7 '>': '&gt;',
8 '"': '&quot;',
9 "'": '&#x27;',
10 '`': '&#x60;'
11 };
12
13 return escapeMap;
14
15});
Note: See TracBrowser for help on using the repository browser.