class Jekyll::Converters::Markdown

def get_processor

rubocop:disable Naming/AccessorMethodName

To ensure compatibility, this check has been disabled on this method
RuboCop does not allow reader methods to have names starting with `get_`
def get_processor
  case @config["markdown"].downcase
  when "kramdown" then KramdownParser.new(@config)
  else
    custom_processor
  end
end