During generation, the engine probes every cited URL with a ranged streaming request and unwraps broken links into plain text rather than deleting entire sentences, never removing the protected money link.
flowchart TD
A[Raw Generated Markdown] --> B[Extract Citation URLs]
B --> C{Safe Ranged GET Probe}
C -->|2xx/3xx Status| D[Keep Active Hyperlink]
C -->|4xx/5xx/No Response| E{Is Target Money Link?}
E -->|Yes| F[Keep Link & Flag Warning]
E -->|No| G[Unwrap Markdown to Plain Text]
D --> H[Clean Output Article]
F --> H
G --> H