Edit File: _escapeMap.js
// Internal list of HTML entities for escaping. export default { '&': '&', '<': '<', '>': '>', '"': '"', "'": ''', '`': '`' };
Back to File Manager