2007-07-04 17:36:59 -05:00
|
|
|
require 'html5/html5parser'
|
2007-08-30 12:19:10 -05:00
|
|
|
require 'html5/version'
|
2007-07-04 17:36:59 -05:00
|
|
|
|
|
|
|
module HTML5
|
|
|
|
|
2007-08-30 12:19:10 -05:00
|
|
|
def self.parse(stream, options={})
|
|
|
|
HTMLParser.parse(stream, options)
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.parse_fragment(stream, options={})
|
2007-12-17 03:17:43 -06:00
|
|
|
HTMLParser.parse_fragment(stream, options)
|
2007-08-30 12:19:10 -05:00
|
|
|
end
|
2007-07-04 17:36:59 -05:00
|
|
|
end
|