class Phlex::SGML

def vanish(*args)

def vanish(*args)
	return unless block_given?
	if args.length > 0
		@_context.capturing_into(Phlex::Vanish) { yield(*args) }
	else
		@_context.capturing_into(Phlex::Vanish) { yield(self) }
	end
	nil
end