Sha256: 73a1d8752830638e0f1ef10853bd2dc8788ae94c91965112d2078f6d96abe181
Contents?: true
Size: 658 Bytes
Versions: 34
Compression:
Stored size: 658 Bytes
Contents
# :stopdoc: module Nokogiri module XML class EntityDecl < Nokogiri::XML::Node # from libxml/entities.h INTERNAL_GENERAL = 1 EXTERNAL_GENERAL_PARSED = 2 EXTERNAL_GENERAL_UNPARSED = 3 INTERNAL_PARAMETER = 4 EXTERNAL_PARAMETER = 5 INTERNAL_PREDEFINED = 6 def content cstruct[:content] end def entity_type cstruct[:etype] end def external_id cstruct[:external_id] end def system_id cstruct[:system_id] end def original_content cstruct[:orig] end end end end # :startdoc:
Version data entries
34 entries across 34 versions & 4 rubygems