class Lookbook::FileSource::Component

def start_line

def start_line
  if lines_around_highlight && @highlight_lines.any?
    start = @highlight_lines.first - lines_around_highlight
    (start > 0) ? start : 1
  else
    @start_line
  end
end