class Phlex::SGML

def comment(&)

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