microformats2/lib/microformats2/property.rb
2013-02-14 14:44:52 -08:00

10 lines
197 B
Ruby

module Microformats2
module Property
CLASS_REG_EXP = /^(p-|u-|dt-|e-)/
PREFIX_CLASS_MAP = {
"p" => Text,
"u" => Url,
"dt" => DateTime,
"e" => Embedded }
end
end