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

14 lines
252 B
Ruby
Raw Normal View History

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