MCPcopy Create free account
hub / github.com/Tron521/codex-console-temp / escapeHtml

Function escapeHtml

static/js/email_services.js:799–804  ·  view source on GitHub ↗
(text)

Source from the content-addressed store, hash-verified

797
798// HTML 转义
799function escapeHtml(text) {
800 if (!text) return '';
801 const div = document.createElement('div');
802 div.textContent = text;
803 return div.innerHTML;
804}
805
806// ============== 编辑功能 ==============
807

Callers 4

loadOutlookServicesFunction · 0.70
getCustomServiceAddressFunction · 0.70
renderCustomServicesFunction · 0.70
handleOutlookImportFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected