(node: Dict[str, Any])
| 3610 | return "\n".join(paragraphs).strip() |
| 3611 | |
| 3612 | |
| 3613 | def _parse_daily_note_entries(path: Path) -> List[Dict[str, str]]: |
| 3614 | try: |
| 3615 | lines = path.read_text(encoding="utf-8").splitlines() |
| 3616 | except OSError: |
| 3617 | return [] |
| 3618 | entries: List[Dict[str, str]] = [] |
| 3619 | current_topic = "未分类" |
no test coverage detected