instiki/vendor/plugins/HTML5lib/lib/html5lib.rb

12 lines
250 B
Ruby
Raw Normal View History

require 'html5lib/html5parser'
module HTML5lib
def self.parse(stream, options={})
HTMLParser.parse(stream, options)
end
def self.parseFragment(stream, options={})
HTMLParser.parse(stream, options)
end
end