mirror of
https://github.com/harvard-edge/cs249r_book.git
synced 2026-03-24 08:00:21 -05:00
26 lines
670 B
Markdown
26 lines
670 B
Markdown
# Content Management Scripts
|
|
|
|
Tools for managing, editing, and validating book content.
|
|
|
|
## Key Scripts
|
|
|
|
- **`manage_section_ids.py`** - Manage section IDs and cross-references
|
|
- **`improve_figure_captions.py`** - Enhance figure captions using AI
|
|
- **`find_unreferenced_labels.py`** - Find unused labels and references
|
|
- **`find_duplicate_labels.py`** - Detect duplicate labels
|
|
- **`fix_bibliography.py`** - Fix bibliography formatting
|
|
|
|
## Common Usage
|
|
|
|
```bash
|
|
# Improve figure captions
|
|
python improve_figure_captions.py
|
|
|
|
# Find content issues
|
|
python find_unreferenced_labels.py
|
|
python find_duplicate_labels.py
|
|
|
|
# Clean up formatting
|
|
python collapse_blank_lines.py
|
|
```
|