이미지 마크다운 필터 추가: ![alt](path) 패턴도 content_lines에서 제거

- block_assembler + assemble_stage2: 기존 [이미지:] 패턴에 ![markdown image 패턴 추가
- 02번 상단 "소통과 신뢰" 카드에 이미지 경로가 불릿으로 표시되던 문제 해결

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-07 07:45:32 +09:00
parent 095abdf9af
commit f568e5c95d
2 changed files with 2 additions and 2 deletions

View File

@@ -717,7 +717,7 @@ def _assemble_type_b(run: Path, ctx: dict):
if popup_match:
popup_titles.append(popup_match.group(1))
continue
if re.search(r'\[이미지:', stripped):
if re.search(r'\[이미지:', stripped) or re.match(r'^!\[', stripped):
continue
content_lines.append(stripped)