mirror of
https://github.com/harvard-edge/cs249r_book.git
synced 2026-05-03 00:07:08 -05:00
26 lines
584 B
Markdown
26 lines
584 B
Markdown
# Utility Scripts
|
|
|
|
General-purpose utility scripts for validation and checking.
|
|
|
|
## Scripts
|
|
|
|
- **`check_sources.py`** - Comprehensive source file validation
|
|
- **`check_ascii.py`** - Check for non-ASCII characters
|
|
- **`check_images.py`** - Validate image files and references
|
|
- **`fix_titles.py`** - Fix title formatting
|
|
- **`analyze_footnotes.sh`** - Analyze footnotes
|
|
- **`count_footnotes.sh`** - Count footnotes
|
|
|
|
## Quick Usage
|
|
|
|
```bash
|
|
# Validate source files
|
|
python check_sources.py
|
|
|
|
# Check for encoding issues
|
|
python check_ascii.py
|
|
|
|
# Validate images
|
|
python check_images.py
|
|
```
|