class Phlex::SGML

def yield_content_with_no_args

Other tags:
    Yield: - Yields the block with no arguments.
def yield_content_with_no_args
	return unless block_given?
	buffer = @_context.buffer
	original_length = buffer.bytesize
	content = yield
	__text__(content) if original_length == buffer.bytesize
	nil
end