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