0f6889e09f
Fix Diego Restrepo's bug (see Rev 184). Update to latest HTML5lib.
14 lines
252 B
Ruby
14 lines
252 B
Ruby
require 'html5/html5parser'
|
|
require 'html5/version'
|
|
|
|
module HTML5
|
|
|
|
def self.parse(stream, options={})
|
|
HTMLParser.parse(stream, options)
|
|
end
|
|
|
|
def self.parse_fragment(stream, options={})
|
|
HTMLParser.parse_fragment(stream, options)
|
|
end
|
|
end
|