module Kitchen::Directions::SolutionAreaSnippet

Public Class Methods

v1(title:, solutions_clipboard:) click to toggle source
# File lib/kitchen/directions/move_solutions_to_answer_key/solution_area_snippet.rb, line 4
  def self.v1(title:, solutions_clipboard:)
    <<~HTML
      <div class="os-solution-area">
        #{title}
        #{solutions_clipboard.paste}
      </div>
    HTML
  end