이미지 마크다운 필터 추가:  패턴도 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:
@@ -717,7 +717,7 @@ def _assemble_type_b(run: Path, ctx: dict):
|
|||||||
if popup_match:
|
if popup_match:
|
||||||
popup_titles.append(popup_match.group(1))
|
popup_titles.append(popup_match.group(1))
|
||||||
continue
|
continue
|
||||||
if re.search(r'\[이미지:', stripped):
|
if re.search(r'\[이미지:', stripped) or re.match(r'^!\[', stripped):
|
||||||
continue
|
continue
|
||||||
content_lines.append(stripped)
|
content_lines.append(stripped)
|
||||||
|
|
||||||
|
|||||||
@@ -586,7 +586,7 @@ def _assemble_slide_html_type_b(ctx: "PipelineContext", title_text: str = "") ->
|
|||||||
if popup_match:
|
if popup_match:
|
||||||
popup_titles.append(popup_match.group(1))
|
popup_titles.append(popup_match.group(1))
|
||||||
continue
|
continue
|
||||||
if re.search(r'\[이미지:', stripped):
|
if re.search(r'\[이미지:', stripped) or re.match(r'^!\[', stripped):
|
||||||
continue
|
continue
|
||||||
content_lines.append(stripped)
|
content_lines.append(stripped)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user