Footer-style markers that must not appear more than once in the aggregated article. Catches the same family of repeated blocks the cleaning pipeline guards against in scripts/render-lib/aggregator/cleaning/structural.ts.
Each pattern anchors to the start of a line (^) and matches the full line content so that two distinct footer lines like **ISMS classification**: PUBLIC, no PII. and **ISMS classification**: INTERNAL, restricted. produce different match strings and are therefore NOT flagged as duplicates. Only truly identical footer lines (same text) are counted.
Patterns are case-insensitive to catch **isms โฆ** emitted by some AI templates.
Footer-style markers that must not appear more than once in the aggregated article. Catches the same family of repeated blocks the cleaning pipeline guards against in scripts/render-lib/aggregator/cleaning/structural.ts.
Each pattern anchors to the start of a line (
^) and matches the full line content so that two distinct footer lines like**ISMS classification**: PUBLIC, no PII.and**ISMS classification**: INTERNAL, restricted.produce different match strings and are therefore NOT flagged as duplicates. Only truly identical footer lines (same text) are counted.Patterns are case-insensitive to catch
**isms โฆ**emitted by some AI templates.