class Phlex::SGML

def comment(&block)

Returns:
  • (nil) -
def comment(&block)
	context = @_context
	return if context.fragments && !context.in_target_fragment
	buffer = context.buffer
	buffer << "<!-- "
	yield_content(&block)
	buffer << " -->"
	nil
end