No Description

_escapeMap.js 164B

123456789
  1. // Internal list of HTML entities for escaping.
  2. export default {
  3. '&': '&',
  4. '<': '&lt;',
  5. '>': '&gt;',
  6. '"': '&quot;',
  7. "'": '&#x27;',
  8. '`': '&#x60;'
  9. };