| Class | HTML5::TreeBuilders::Hpricot::DocumentType |
| In: |
lib/feed_tools/vendor/html5/lib/html5/treebuilders/hpricot.rb
|
| Parent: | Node |
# File lib/feed_tools/vendor/html5/lib/html5/treebuilders/hpricot.rb, line 149
149: def self.hpricot_class
150: ::Hpricot::DocType
151: end
# File lib/feed_tools/vendor/html5/lib/html5/treebuilders/hpricot.rb, line 153
153: def initialize(name, public_id, system_id)
154: begin
155: super(name)
156: rescue ArgumentError # needs 3...
157: end
158:
159: @hpricot = ::Hpricot::DocType.new(name, public_id, system_id)
160: end