instiki/vendor/plugins/HTML5lib/lib/html5.rb
2007-07-04 17:36:59 -05:00

12 lines
233 B
Ruby

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