class Phlex::SGML

def comment(&block)

Returns:
  • (nil) -
def comment(&block)
	target = @_context.target
	target << "<!-- "
	yield_content(&block)
	target << " -->"
	nil
end