B
    :ÑpDÉ  ã               @   sl   d Z dZddlZddlZddlZddlZddlmZmZ ddlm	Z	m
Z
 ddlmZmZ G dd„ deƒZdS )	z(
Docutils component-related transforms.
ZreStructuredTexté    N)ÚnodesÚutils)ÚApplicationErrorÚ	DataError)Ú	TransformÚTransformErrorc               @   s   e Zd ZdZdZdd„ ZdS )ÚFilteraA  
    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, the reStructuredText "meta" directive creates a "pending"
    element containing a "meta" element (in ``pending.details['nodes']``).
    Only writers (``pending.details['component'] == 'writer'``) supporting the
    "html" format (``pending.details['format'] == 'html'``) will include the
    "meta" element; it will be deleted from the output of all other writers.
    i  c             C   sT   | j }|jd }|jd }| jjj| }| |¡rD| |jd ¡ n|j |¡ d S )NÚ	componentÚformatr   )	Z	startnodeZdetailsZdocumentZtransformerZ
componentsZsupportsZreplace_selfÚparentÚremove)ÚselfÚpendingZcomponent_typer
   r	   © r   ú=lib/python3.7/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   )r   Z__docformat__ÚsysÚosÚreZtimeZdocutilsr   r   r   r   Zdocutils.transformsr   r   r   r   r   r   r   Ú<module>   s   