# Task: Korean Consonant Search (초성 검색) Support

## 1. Investigation & Planning
- [x] Investigate how the current Fuse.js setup handles Korean consonant search.
- [x] Determine the most efficient way to extract initial Korean consonants (초성) without relying on heavy external libraries like es-hangul or hangul-js.
- [x] Write implementation plan detailing the `getChoseong` utility and Fuse.js integration.

## 2. Implementation
- [x] Implement `getChoseong` utility in `src/components/ReflectEditor.tsx` or a `src/lib/utils/hangul.ts` file.
- [x] Update `wikiList` mapping in `searchDocuments` to include a `choseong` property.
- [x] Configure `Fuse.js` to search across both `title` and `choseong` keys.

## 3. Verification
- [x] Build the project to ensure type safety.
- [x] Verify that typing `[[ㄴ` or `[[ㄴㅅㅍㄹ` correctly matches "누수플랜".
