# File lib/cucumber/formatter/html.rb, line 221
      def step_name(keyword, step_match, status, source_indent, background)
        @step_matches ||= []
        background_in_scenario = background && !@listing_background
        @skip_step = @step_matches.index(step_match) || background_in_scenario
        @step_matches << step_match
      
        unless @skip_step
          build_step(keyword, step_match, status)
        end
      end