Class: MicroMicro::Parsers::EmbeddedMarkupPropertyParser

Inherits:
BasePropertyParser show all
Defined in:
lib/micro_micro/parsers/embedded_markup_property_parser.rb

Instance Method Summary collapse

Methods inherited from BasePropertyParser

#initialize

Constructor Details

This class inherits a constructor from MicroMicro::Parsers::BasePropertyParser

Instance Method Details

#valueHash{Symbol => String}

[View source]

10
11
12
13
14
15
16
# File 'lib/micro_micro/parsers/embedded_markup_property_parser.rb', line 10

def value
  @value ||=
    {
      html: node.inner_html.strip,
      value: super
    }
end