Current generator scripts write hundreds of HTML files to disk just to be read back by Jekyll. This is slow and requires constant disk I/O and Git management.
Generator plugins for interviews, videos, and taxonomy._data/ and transformed directly into Jekyll Page or Document objects in memory.Implemented Jekyll Generator plugins for interviews, video assets, and taxonomy.
_plugins/generate_interviews.rb, _plugins/generate_video_assets.rb, and _plugins/generate_taxonomy.rb._layouts/interview.html, _layouts/video_asset.html, _layouts/taxonomy_index.html, and _layouts/taxonomy_detail.html._data/ and transformed directly into memory-resident Jekyll Page objects, eliminating unnecessary disk I/O._site/ and that existing layouts/frontmatter are preserved.bin/ and updated the Rakefile to rely on the new plugins.