Home
last modified time | relevance | path

Searched refs:ElementTree (Results 1 – 10 of 10) sorted by relevance

/external/markdown/docs/
DINSTALL7 Python-Markdown requires the ElementTree module to be installed. In Python2.5+
8 ElementTree is included as part of the standard library. For earlier versions
12 >>> import ElementTree
15 copy of ElementTree installed on your system. As cElementTree is faster, you
20 download the latest version of ElementTree.
28 easy_install ElementTree
Dwriting_extensions.txt15 As the parser builds an [ElementTree][] object which is later rendered
27 * [Working with the ElementTree][]
74 Accepts a match object and returns an ElementTree element of a plain
149 For specifics on manipulating the ElementTree, see
150 [Working with the ElementTree][] below.
154 Postprocessors manipulate the document after the ElementTree has been
162 Postprocessors are run after the ElementTree has been serialized back into
178 That Blockprocessor parses the block and adds it to the ElementTree. The
273 Given a list of lines, an ElementTree object is returned. This should be
296 <h3 id="working_with_et">Working with the ElementTree</h3>
[all …]
Drelease-2.0.txt26 * The old home-grown NanoDOM has been replaced with ElementTree. Therefore all
27 extensions must use ElementTree rather than the old NanoDOM.
38 ElementTree internally to build the (X)HTML document from markdown source text.
Drelease-2.0.2.txt6 ElementTree on older versions of Python (< 2.5). There have also been a few
DAUTHORS13 patterns, replaced the NanoDOM with ElementTree support and made various other
DCHANGE_LOG32 August 4 2008: Updated included extensions to ElementTree. Added a
35 July 2008: Switched from home-grown NanoDOM to ElementTree and
/external/markdown/markdown/
Detree_loader.py13 import xml.etree.ElementTree as etree
19 import elementtree.ElementTree as etree
Dhtml4.py41 ElementTree = markdown.etree.ElementTree variable
273 write_html(ElementTree(element).getroot(),file,encoding)
Dblockparser.py61 return markdown.etree.ElementTree(self.root)
/external/markdown/
Dregression-tests.py52 self.assert_(isinstance(tree, markdown.etree.ElementTree))