Searched refs:ElementTree (Results 1 – 10 of 10) sorted by relevance
7 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 ElementTree15 copy of ElementTree installed on your system. As cElementTree is faster, you20 download the latest version of ElementTree.28 easy_install ElementTree
15 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. The273 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 …]
26 * The old home-grown NanoDOM has been replaced with ElementTree. Therefore all27 extensions must use ElementTree rather than the old NanoDOM.38 ElementTree internally to build the (X)HTML document from markdown source text.
6 ElementTree on older versions of Python (< 2.5). There have also been a few
13 patterns, replaced the NanoDOM with ElementTree support and made various other
32 August 4 2008: Updated included extensions to ElementTree. Added a 35 July 2008: Switched from home-grown NanoDOM to ElementTree and
13 import xml.etree.ElementTree as etree19 import elementtree.ElementTree as etree
41 ElementTree = markdown.etree.ElementTree variable273 write_html(ElementTree(element).getroot(),file,encoding)
61 return markdown.etree.ElementTree(self.root)
52 self.assert_(isinstance(tree, markdown.etree.ElementTree))