TheProlog/prolog-services-replace_content

View on GitHub
lib/prolog/services/replace_content/splitter/symmetric_params.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

require_relative './splitter_params'

module Prolog
  module Services
    # Replaces content within an HTML string based on endpoints and content.
    class ReplaceContent
      module Splitter
        # Builds splitter params for symmetric splitter; same marker text before
        # and after selected content.
        class SymmetricSplitterParams < SplitterParams
          def initialize(content, endpoints, marker)
            super content, endpoints
            add(marker: marker)
            self
          end
        end # class ...::ReplaceContent::Splitter::SymmetricSplitterParams
      end
    end # class Prolog::Services::ReplaceContent::SplitterParams
  end
end