class Phlex::SGML

def new(*, **, &block)

Other tags:
    Note: - The block will not be delegated {#initialize}. Instead, it will be sent to {#template} when rendering.
def new(*, **, &block)
	if block
		object = super(*, **, &nil)
		object.instance_exec { @_content_block = block }
		object
	else
		super
	end
end