Skip to content

\noexpand

yex.keyword.Noexpand(parser) #

The argument is not expanded.

Source code in yex/keyword/other.py
313
314
315
316
317
318
319
320
321
322
323
324
@yex.decorator.control(
        expandable = True,
        push_result = False,
        )
def Noexpand(parser):
    """
    The argument is not expanded.
    """

    t = parser.next(level='deep')
    logger.debug(r'\noexpand: not expanding %s', t)
    return t