import { readFile } from 'fs/promises'; import Epub from 'epub-gen'; import { parseHTML } from 'linkedom'; interface BlogPost { title: string; author: string; content: string; url: string; } async function generateEpub() { // Read the scraped posts const postsData = await readFile('posts.json', 'utf-8'); const posts: BlogPost[] = JSON.parse(postsData); if (posts.length === 0) { console.error('No posts found in posts.json'); return; } // Prepare ePub options const options = { title: 'Crónicas Periodísticas', author: posts[0].author, // Using first post's author as main author output: 'cronicas-periodisticas.epub', content: [], appendChapterTitles: true, verbose: true, fetchImages: false, // Disable image downloading customHtmlTocTemplate: ({ title, author, chapters }) => `
Por ${author}
Nota: Las imágenes no se incluyeron en este eBook. Visite los enlaces originales para ver el contenido completo.
Por ${post.author}
${paragraphs || 'No content available
'} ` }); } // Generate the ePub console.log(`Generating ePub with ${posts.length} posts...`); await new Epub(options).promise; console.log('ePub generated successfully!'); } generateEpub().catch(console.error);