# File lib/nokogiri/html/document.rb, line 7
      def meta_encoding
        meta = meta_content_type and
          match = /charset\s*=\s*([\w-]+)/i.match(meta['content']) and
          match[1]
      end