sparklemotion/nokogiri

View on GitHub
lib/nokogiri/xml/cdata.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
# frozen_string_literal: true

module Nokogiri
  module XML
    class CDATA < Nokogiri::XML::Text
      ###
      # Get the name of this CDATA node
      def name
        "#cdata-section"
      end
    end
  end
end