class Phlex::SGML

def capture(&block)

Returns:
  • (String) -

Other tags:
    Note: - This only works if the block's receiver is the current component or the block returns a String.
def capture(&block)
	return "" unless block
	@_context.capturing_into(+"") { yield_content(&block) }
end