The bmannconsulting.com website
1# frozen_string_literal: true
2
3EMPTY_FRONT_MATTER = <<~JEKYLL
4 ---
5 ---
6
7JEKYLL
8
9# Inject empty front matter in notes that don't have any
10Jekyll::Hooks.register :site, :after_init do |site|
11 Dir.glob(site.collections['notes'].relative_directory + '/*.md').each do |filename|
12 raw_note_content = File.read(filename)
13 unless raw_note_content.start_with?('---')
14 raw_note_content.prepend(EMPTY_FRONT_MATTER)
15 File.write(filename, raw_note_content)
16 end
17 end
18end