class Phlex::SGML
def yield_content_with_args(*args)
-
(nil)
-
Other tags:
- Yield: - Yields the given arguments.
def yield_content_with_args(*args) return unless block_given? buffer = @_context.buffer original_length = buffer.bytesize content = yield(*args) __text__(content) if original_length == buffer.bytesize nil end