class Kitchen::Directions::BakeChapterTitle::V1

Public Instance Methods

bake(book:) click to toggle source
# File lib/kitchen/directions/bake_chapter_title/v1.rb, line 5
def bake(book:)
  book.chapters.each do |chapter|
    fix_up_chapter_title(chapter: chapter)
  end
end
fix_up_chapter_title(chapter:) click to toggle source
# File lib/kitchen/directions/bake_chapter_title/v1.rb, line 11
    def fix_up_chapter_title(chapter:)
      heading = chapter.at('h1[2]')
      heading[:id] = "chapTitle#{chapter.count_in(:book)}"
      heading.replace_children(with:
        <<~HTML
          <span class="os-part-text">#{I18n.t(:chapter)} </span>
          <span class="os-number">#{chapter.count_in(:book)}</span>
          <span class="os-divider"> </span>
          <span data-type="" itemprop="" class="os-text">#{heading.text}</span>
        HTML
      )
    end