module Microformats

Constants

VERSION

Public Class Methods

parse(html, base: nil) click to toggle source
# File lib/microformats.rb, line 19
def parse(html, base: nil)
  Parser.new.parse(html, base: base)
end
read_html(html) click to toggle source
# File lib/microformats.rb, line 23
def read_html(html)
  Parser.new.read_html(html)
end