feat: 커맨드 로그 메시지 개선 및 불필요한 항목 제거

This commit is contained in:
2026-02-05 12:33:55 +00:00
parent db1082ecb1
commit 39935404bc
20 changed files with 105 additions and 93 deletions
+1
View File
@@ -586,6 +586,7 @@ const normalizeTemplate = (text) => {
out = out.replace(/<1>.*?<\/>/g, '');
}
out = out.replace(/<\/?b>/g, '');
out = out.replace(/\{\$\{[^}]*\}[^}]*\}/g, '${}');
out = out.replace(/\$\{[^}]*\}/g, '${}');
out = out.replace(/\{\$[A-Za-z_][A-Za-z0-9_]*\}/g, '${}');
out = out.replace(/\$[A-Za-z_][A-Za-z0-9_]*\b/g, '${}');