Type B'' 추가: 참고 이미지 스타일 (색상바+여백, border 없음)

- block_assembler_b2.py: B'' 전용 조립 함수 (별도 파일)
- 상단: 색상 바 제목 + 소제목(accent 색상) + 불릿(들여쓰기)
- 하단: 색상 바 제목 + 표(있으면) + 불릿
- border/gradient 박스 없음, 여백과 폰트로 구분
- 이제부터 스타일 세부 조정은 하나씩 반영 예정

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-07 11:51:10 +09:00
parent 3d1194a562
commit 076aeb0403
5 changed files with 285 additions and 5 deletions

View File

@@ -373,6 +373,9 @@ def assemble_slide_html(ctx: "PipelineContext", title_text: str = "") -> str:
return _assemble_slide_html_type_b(ctx, title_text)
if ctx.analysis.layout_template == "B'":
return _assemble_slide_html_type_b_prime(ctx, title_text)
if ctx.analysis.layout_template == "B''":
from src.block_assembler_b2 import _assemble_slide_html_type_b_double_prime
return _assemble_slide_html_type_b_double_prime(ctx, title_text)
return _assemble_slide_html_type_a(ctx, title_text)