feat: ATS-safe CV rework (EN + NO), replacing scrambled two-column PDFs
CI / quality (push) Has been cancelled
CI / e2e (push) Has been cancelled
CI / lighthouse (push) Has been cancelled
CI / relay (push) Has been cancelled
CI / images (push) Has been cancelled

- single-column, real-text PDFs: standard headings (Summary, Skills, Experience,
  Projects, Education), consistent dates, no letter-spacing
- 'Systems Developer, eight years experience' (drops 'mid-level'); apprentice->developer
  progression shown; Projects section added; Norwegian written natively (errors fixed)
- one page each, ~8 kB (was 132/172 kB); verified clean ATS text extraction + reading order
- generator committed to tools/cv (content.js + pdfkit/docx builders) for reproducibility
- editable .docx kept alongside; site file-size labels updated

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
cesnimda
2026-07-04 07:22:57 +02:00
parent 743cce306b
commit 18c556bd54
11 changed files with 454 additions and 2 deletions
+13
View File
@@ -0,0 +1,13 @@
{
"name": "resumesite-cv",
"private": true,
"description": "Generates the ATS-safe CV PDFs (and editable .docx) from canonical content",
"scripts": {
"pdf": "node build-pdf.js",
"docx": "node build-cv.js"
},
"dependencies": {
"docx": "^9.0.0",
"pdfkit": "^0.15.0"
}
}