(paper: Dict[str, Any])
| 257 | |
| 258 | |
| 259 | def _deep_reading_folder_name(paper: Dict[str, Any]) -> str: |
| 260 | date = _parse_publish_month(paper) |
| 261 | return f"Deep Reading - {MONTH_LABELS.get(date.month, date.strftime('%b'))} {date.year}" |
| 262 | |
| 263 | |
| 264 | def _looks_like_obsidian_daily_root(path: Path) -> bool: |
no test coverage detected