class Kitchen::Directions::BakeChapterIntroductions::BakeChapterOutline

Public Instance Methods

bake(chapter_objectives_html:) click to toggle source
# File lib/kitchen/directions/bake_chapter_introductions/bake_chapter_outline.rb, line 5
    def bake(chapter_objectives_html:)
      <<~HTML
        <div class="os-chapter-outline">
          <h3 class="os-title">#{I18n.t(:chapter_outline)}</h3>
          #{chapter_objectives_html}
        </div>
      HTML
    end