wip
This commit is contained in:
9
test-raw-data.js
Normal file
9
test-raw-data.js
Normal 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));
|
||||
Reference in New Issue
Block a user