# File lib/org-ruby/parser.rb, line 287
    def set_mode_for_results_block_contents(previous_line, line)
      if previous_line.start_of_results_code_block? \
        or previous_line.assigned_paragraph_type == :comment
        unless @next_results_block_should_be_exported or line.paragraph_type == :blank
          line.assigned_paragraph_type = :comment
        end
      end
    end