class Phlex::Tag::StandardElement

def call

def call
  "<#{meta_data}>#{super}</#{self.class.value}>"
end

def method_missing(*args, **kwargs, &block)

def method_missing(*args, **kwargs, &block)
  super.tap { Context.new(self).call(&block) if block_given? }
end