Sha256: e2a49bb23dba0a5ca02d4b4874d9d3aaf0b8c1ecfa21168aa441236a30531726
Contents?: true
Size: 322 Bytes
Versions: 69
Compression:
Stored size: 322 Bytes
Contents
module Nokogiri module HTML class EntityLookup def get(key) # :nodoc: ptr = LibXML.htmlEntityLookup(key.to_s) return nil if ptr.null? cstruct = LibXML::HtmlEntityDesc.new(ptr) EntityDescription.new cstruct[:value], cstruct[:name], cstruct[:desc] end end end end
Version data entries
69 entries across 69 versions & 10 rubygems