(text)
| 2101 | |
| 2102 | // 高亮HTTP链接函数 |
| 2103 | function highlightHttpLinks(text) { |
| 2104 | // 匹配 http:// 或 https:// 开头的URL |
| 2105 | const urlRegex = /(https?:\/\/[^\s<>"]+)/gi; |
| 2106 | return text.replace(urlRegex, function(url) { |
| 2107 | return `<a href="${url}" target="_blank" style="color: #007bff; text-decoration: underline; word-break: break-all;" title="点击打开: ${url}">${url}</a>`; |
| 2108 | }); |
| 2109 | } |
| 2110 | |
| 2111 | async function batchVerifyProjectIds() { |
| 2112 | const selectedFiles = Array.from(AppState.creds.selectedFiles); |
no outgoing calls
no test coverage detected