class MicroMicro::Parsers::EmbeddedMarkupPropertyParser

Public Instance Methods

value() click to toggle source

@see microformats.org/wiki/microformats2-parsing#parsing_an_e-_property

@return [Hash{Symbol => String}]

# File lib/micro_micro/parsers/embedded_markup_property_parser.rb, line 7
def value
  @value ||= begin
    {
      html: node.inner_html.strip,
      value: super
    }
  end
end