o
    N=&bg  ã                   @   s(   d Z ddlmZ dZG dd„ deƒZdS )z(
Docutils component-related transforms.
é    )Ú	TransformZreStructuredTextc                   @   s   e Zd ZdZdZdd„ ZdS )ÚFilteraÃ  
    Include or exclude elements which depend on a specific Docutils component.

    For use with `nodes.pending` elements.  A "pending" element's dictionary
    attribute ``details`` must contain the keys "component" and "format".  The
    value of ``details['component']`` must match the type name of the
    component the elements depend on (e.g. "writer").  The value of
    ``details['format']`` is the name of a specific format or context of that
    component (e.g. "html").  If the matching Docutils component supports that
    format or context, the "pending" element is replaced by the contents of
    ``details['nodes']`` (a list of nodes); otherwise, the "pending" element
    is removed.

    For example, up to version 0.17, the reStructuredText "meta"
    directive created a "pending" element containing a "meta" element
    (in ``pending.details['nodes']``).
    Only writers (``pending.details['component'] == 'writer'``)
    supporting the "html", "latex", or "odf" formats
    (``pending.details['format'] == 'html,latex,odf'``) included the
    "meta" element; it was deleted from the output of all other writers.

    This transform is no longer used by Docutils, it may be removed in future.
    i  c                 C   sh   | j }|jd }|jd  d¡}| jjj| }|D ]}| |¡r+| |jd ¡  d S q|j 	|¡ d S )NÚ	componentÚformatú,Únodes)
Z	startnodeÚdetailsÚsplitZdocumentZtransformerÚ
componentsZsupportsZreplace_selfÚparentÚremove)ÚselfÚpendingZcomponent_typeÚformatsr   r   © r   úBusr/lib/python3.10/site-packages/docutils/transforms/components.pyÚapply,   s   

þzFilter.applyN)Ú__name__Ú
__module__Ú__qualname__Ú__doc__Zdefault_priorityr   r   r   r   r   r      s    r   N)r   Zdocutils.transformsr   Z__docformat__r   r   r   r   r   Ú<module>   s   