* Generates toon format markdown for the Blog RSS feed. * Converts public/blog/index.xml to index.md * as per https://github.com/toon-format/toon specification.
()
| 89 | * as per https://github.com/toon-format/toon specification. |
| 90 | */ |
| 91 | async function generateBlogIndex() { |
| 92 | console.log('\nGenerating toon format for Blog index...'); |
| 93 | await generateRssFeedIndex({ |
| 94 | xmlPath: 'public/blog/index.xml', |
| 95 | title: 'Apache Camel Blog', |
| 96 | description: 'Blog posts about Apache Camel and related topics.', |
| 97 | itemsName: 'posts' |
| 98 | }); |
| 99 | console.log('Blog index toon format generation complete'); |
| 100 | } |
| 101 | |
| 102 | module.exports = { |
| 103 | generateRssFeedIndex, |
no test coverage detected