Lines Matching refs:etree
89 el = markdown.etree.Element('em')
193 * **``parent``**: The parent etree Element of the block. This can be useful as
203 * **``parent``**: A pointer to the parent etree Element of the block. The run
228 Returns the last child of the given etree Element or ``None`` if it had no
305 the same version of ElementTree as markdown. The module is named ``etree``
308 from markdown import etree
310 ``markdown.etree`` tries to import ElementTree from any known location, first
311 as a standard library module (from ``xml.etree`` in Python 2.5), then as a third
327 table = etree.Element("table")
329 tr = etree.SubElement(table, "tr") # Add child tr to table
330 td1 = etree.SubElement(tr, "td") # Add child td1 to tr
332 td2 = etree.SubElement(tr, "td") # Add second td to tr
347 ([Python Docs](http://docs.python.org/lib/module-xml.etree.ElementTree.html)).