# File lib/cheat/site.rb, line 70
    def get(title)
      @headers['Content-Type'] = 'text/plain'

      sheet = Sheet.detect { |s| s.title == title }
      return { 'Error!' => "Cheat sheet `#{title}' not found." }.to_yaml unless sheet

      return { sheet.title => sheet.body }.to_yaml
    end