microformats2/lib/microformats2/property/url.rb
2013-04-18 22:13:36 -07:00

18 lines
321 B
Ruby

module Microformats2
module Property
class Url < Foundation
protected
def attr_map
@attr_map = {
"a" => "href",
"area" => "href",
"img" => "src",
"object" => "data",
"abbr" => "title",
"data" => "value" }
end
end
end
end