module Nokogiri::XML::PP::CharacterData

def pretty_print pp # :nodoc:

:nodoc:
def pretty_print pp # :nodoc:
  nice_name = self.class.name.split('::').last
  pp.group(2, "#(#{nice_name} ", ')') do
    pp.pp text
  end
end