class Phlex::SGML

def yield_content

Returns:
  • (nil) -

Other tags:
    Yieldparam: component -
def yield_content
	return unless block_given?
	target = @_context.target
	original_length = target.length
	content = yield(self)
	__text__(content) if original_length == target.length
	nil
end