- Smart PDF type detection (text vs scanned) without full document load - Text extraction using lopdf directly - Markdown conversion with header/list/code detection - CLI tools: detect-pdf, pdf2md Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
26 lines
227 B
Plaintext
26 lines
227 B
Plaintext
# Rust build artifacts
|
|
/target/
|
|
debug/
|
|
*.pdb
|
|
|
|
# Cargo lock (optional for libraries)
|
|
Cargo.lock
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Test files
|
|
*.pdf
|
|
!tests/fixtures/*.pdf
|
|
|
|
# Build cache
|
|
**/*.rs.bk
|