From d18ca5272377c695e990aa235d267d9a8fe7f410 Mon Sep 17 00:00:00 2001 From: Mads Lorentzen Date: Mon, 3 Aug 2026 21:11:13 +0200 Subject: [PATCH] docs(changelog): scope the date-fix verification check to date lines The stock template's contact and award lines carry two decorative separator glyphs that also extract as U+FFFD, so 'grep -c' returns 2, not 0, on a CV that is fully fixed. Point the check at date lines and name the benign hits. Co-Authored-By: Claude Fable 5 --- CHANGELOG.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4732bd9..a670f8a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -50,8 +50,10 @@ per-file diff commands. grep -rn '\\cventry{[^}]*--' cv/ ``` - Verify afterwards with `pdftotext -layout .pdf - | grep -c '�'`, which should - return `0`. + Verify afterwards by extracting the text layer and checking the date lines specifically: + `pdftotext -layout .pdf - | grep '�'` - none of the hits may be a date field. (On + the stock template two benign hits remain either way: the decorative separators on the + contact and award lines, which are unrelated to dates and predate this fix.) ### Security & privacy