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? target = @_context.target original_length = target.length content = yield(*args) __text__(content) if original_length == target.length nil end