1631dff80d
- revise.py: automatic pre-processing (ALL-CAPS→##, numbered sections→###, TOC removal, broken paragraph merging, whitespace normalization); supports N. and Na. numbering patterns; universal heuristics - .claude/commands/step4-review.md: Claude Code skill for qualitative review of clean.md (🔴/🟡/🟢 report + interactive fixes) - README: document step-4 workflow with revise.py and /step4-review - .gitignore: exclude step-4/*/ and step-4/revision_log.md
40 lines
597 B
Plaintext
40 lines
597 B
Plaintext
# Virtual environment
|
|
.venv/
|
|
|
|
# PDF originali — file pesanti, non versionare
|
|
sources/
|
|
|
|
# Output pipeline — generati dagli script, non versionare
|
|
processed/
|
|
chroma_db/
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.pyo
|
|
|
|
# Editor
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Report generati dagli script
|
|
step-0/*_step0_report.txt
|
|
step-1/*_step1_report.txt
|
|
|
|
# Output step-2 — MD grezzo generato da marker
|
|
step-2/*/
|
|
|
|
# Output step-3 — profilo struttura generato da detect_structure.py
|
|
step-3/*/
|
|
|
|
# Output step-4 — MD revisionato e log generati da revise.py
|
|
step-4/*/
|
|
step-4/revision_log.md
|
|
|