migration wip

This commit is contained in:
2025-12-30 16:19:42 +01:00
parent 65a7e9f24a
commit 4ae6b36da9
149 changed files with 32034 additions and 34406 deletions

12
test-decode.js Normal file
View File

@@ -0,0 +1,12 @@
// Test HTML entity decoding
const text = 'bg_image=”45569″';
console.log('Original:', text);
// The file has literal ” and ″ characters
// But we need to decode them to "
const decoded = text
.replace(/”/g, '"') // ” -> "
.replace(/″/g, '"'); // ″ -> "
console.log('Decoded:', decoded);
console.log('Match:', decoded === 'bg_image="45569"');