(text)
| 2094 | |
| 2095 | // HTML转义函数 |
| 2096 | function escapeHtml(text) { |
| 2097 | const div = document.createElement('div'); |
| 2098 | div.textContent = text; |
| 2099 | return div.innerHTML; |
| 2100 | } |
| 2101 | |
| 2102 | // 高亮HTTP链接函数 |
| 2103 | function highlightHttpLinks(text) { |
no outgoing calls
no test coverage detected