diff --git a/.jules/palette.md b/.jules/palette.md index 9a12c9d..bf8951f 100644 --- a/.jules/palette.md +++ b/.jules/palette.md @@ -48,3 +48,6 @@ ## 2024-08-01 - 네이티브 브라우저 UI의 다크 모드 지원 강제 **학습:** CSS 미디어 쿼리(`@media (prefers-color-scheme: dark)`)를 통해 다크 모드를 지원하더라도, 브라우저의 네이티브 UI 요소(스크롤바, 기본 폼 컨트롤, 기본 백그라운드 등)는 테마 변경을 인식하지 못해 어두운 테마 환경에서 밝은 스크롤바가 표시되는 등 시각적 불일치를 초래합니다. **조치:** 항상 HTML 문서의 `` 영역에 `` 메타 태그를 명시적으로 추가하여 브라우저 수준에서 사용자의 시스템 테마(다크 모드 등)를 완전히 상속받아 일관성 있는 네이티브 UI를 렌더링하도록 보장하십시오. +## 2026-07-20 - File system root accessibility issue +**Learning:** When an application dynamically generates HTML titles and headers based on file system paths, the root directory can return an empty string for the file name. This results in empty `` and `<h1>` tags, which severely degrades screen reader accessibility. +**Action:** Provide a robust fallback, such as the absolute path, when generating semantic HTML tags from user-provided or system-generated identifiers. diff --git a/src/main/kotlin/html4tree/main.kt b/src/main/kotlin/html4tree/main.kt index b455862..7af016d 100644 --- a/src/main/kotlin/html4tree/main.kt +++ b/src/main/kotlin/html4tree/main.kt @@ -317,6 +317,8 @@ fun process_dir(curr_dir: File, excludeSet: Set<String>? = null, dirFiles: Array ${cssContent} </style> """ + val dirName = if (curr_dir.name.isEmpty()) curr_dir.absolutePath else curr_dir.name + val index_top = """<!doctype html> <html lang="ko"> <head> @@ -327,12 +329,12 @@ ${cssContent} </style> <meta http-equiv="Content-Security-Policy" content="default-src 'none'; style-src '${styleHash}'; base-uri 'none'; form-action 'none';"> <!-- 보안 향상: 리퍼러를 통한 디렉토리 경로 노출 방지 --> <meta name="referrer" content="no-referrer"> - <title>${curr_dir.getName().escapeHtml()} + ${dirName.escapeHtml()} ${css}
-

${curr_dir.getName().escapeHtml()}

+

${dirName.escapeHtml()}