Updated Pre Consume Script Examples (markdown)

Trenton H 2022-11-23 09:57:44 -08:00
parent 30ebfaf8e6
commit b24d2a09db

@ -35,3 +35,15 @@ if [ -n "$NON_BLANK" ]; then
qpdf "$IN" --replace-input --pages . $NON_BLANK --
fi
```
## Cleaning with `qpdf`
- :warning: **This script modifies the original file**
- Useful for correcting certain structural issues with PDFs
```bash
#!/usr/bin/env bash
qpdf --replace-input "$DOCUMENT_SOURCE_PATH"
```