(orphans)
| 2319 | |
| 2320 | |
| 2321 | def fmt_orphans(orphans): |
| 2322 | if not orphans: |
| 2323 | print("✅ 没有孤儿页面") |
| 2324 | return |
| 2325 | print(f"⚠️ 发现 {len(orphans)} 个孤儿页面(无入链):\n") |
| 2326 | for p in orphans: |
| 2327 | print(f" [{p.type}] {p.title} → {p.path}") |
| 2328 | |
| 2329 | |
| 2330 | def fmt_conflicts(conflicts): |