class Phlex::SGML

def whitespace

Other tags:
    Yield: - If a block is given, it yields the block with no arguments.

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