word_enable_track_changes
Activate Track Changes in a Word document so that subsequent edits in Word are recorded as tracked changes.
Instructions
Enable Track Changes mode in a Word document.
Sets the document settings so that Word will track subsequent changes when the document is opened and edited.
Note: This sets the tracking flag, but changes made by python-docx after this point will NOT be automatically tracked. Use patch_with_track_changes for programmatic tracked edits.
Example: enable_track_changes(file_path="04. Artifacts/contoso-sow.docx")
Args: file_path: Path to the .docx document output_path: Optional output path (defaults to overwriting input)
Returns: Status message
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| file_path | Yes | Path to the .docx document | |
| output_path | No | Optional output path (defaults to overwriting input) |