class Phlex::SGML

def whitespace

Returns:
  • (nil) -
def whitespace
	target = @_context.target
	target << " "
	if block_given?
		yield
		target << " "
	end
	nil
end