Your IP : 216.73.216.213
�
���Lc @ sk d Z d Z d d l m Z m Z m Z d e f d � � YZ d d d � � YZ d e f d � � YZ d
S( s�
This package contains modules for standard tree transforms available
to Docutils components. Tree transforms serve a variety of purposes:
- To tie up certain syntax-specific "loose ends" that remain after the
initial parsing of the input plaintext. These transforms are used to
supplement a limited syntax.
- To automate the internal linking of the document tree (hyperlink
references, footnote references, etc.).
- To extract useful information from the document tree. These
transforms may be used to construct (for example) indexes and tables
of contents.
Each transform is an optional step that a Docutils component may
choose to perform on the parsed document.
t reStructuredTexti����( t languagest ApplicationErrort
TransformSpect TransformErrorc B s e Z RS( ( t __name__t
__module__( ( ( sM /opt/alt/python27/lib/python2.7/site-packages/docutils/transforms/__init__.pyR s t Transformc B s) e Z d Z d Z d d � Z d � Z RS( s;
Docutils transform component abstract base class.
c C s4 | | _ | | _ t j | j j | j � | _ d S( sA
Initial setup for in-place document transforms.
N( t documentt startnodeR t get_languaget settingst
language_codet reportert language( t selfR R ( ( sM /opt/alt/python27/lib/python2.7/site-packages/docutils/transforms/__init__.pyt __init__* s
c K s t d � � d S( s5 Override to apply the transform to the document tree.s"