.. Automatically generated file - do not modify.

.. function:: renpy.filter_text_tags(s, allow=None, deny=None)
    
    Returns a copy of `s` with the text tags filtered. Exactly one of the `allow` and `deny` keyword
    arguments must be given.
    
    `allow`
        A set of tags that are allowed. If a tag is not in this list, it is removed.
    
    `deny`
        A set of tags that are denied. If a tage is not in this list, it is kept in the string.

