Skip to content

\s_0020

yex.keyword.S_0020() #

Add an unbreakable space.

Source code in yex/keyword/other.py
586
587
588
589
590
591
592
593
594
595
@yex.decorator.control(
    vertical = False,
    horizontal = True,
    math = False,
    )
def S_0020(): # Space
    """
    Add an unbreakable space.
    """
    return yex.parse.token.Other(ch=chr(32))