This commit is contained in:
2026-01-06 13:55:04 +01:00
parent 297de69928
commit f991ea6b9b
393 changed files with 41362 additions and 4811 deletions

9
test-raw-data.js Normal file
View File

@@ -0,0 +1,9 @@
const data = require('./data/raw/2025-12-30T15-21-49-331Z/pages.en.json');
const page = data.find(p => p.slug === 'corporate-3-landing-2');
console.log('Raw contentHtml has video_mp4:', page.contentHtml.includes('video_mp4'));
console.log('Raw excerptHtml has video_mp4:', page.excerptHtml.includes('video_mp4'));
// Show first 1000 chars of contentHtml
console.log('\nContent HTML (first 1000 chars):');
console.log(page.contentHtml.substring(0, 1000));