/external/markdown/markdown/ |
etree_loader.py | 10 import xml.etree.cElementTree as etree_in_c namespace 13 import xml.etree.ElementTree as etree namespace 19 import elementtree.ElementTree as etree namespace 28 elif etree.VERSION < "1.1": 32 return etree
|
blockparser.py | 59 self.root = markdown.etree.Element(markdown.DOC_TAG) 61 return markdown.etree.ElementTree(self.root) 64 """ Parse a chunk of markdown text and attach to given etree node. 71 The ``parent`` etree Element passed in is altered in place. 78 """ Process blocks of markdown text and attach to given etree node.
|
blockprocessors.py | 33 """ Return the last child of an etree element. """ 69 of the block (i.e. inside a list), the parent etree element is also 74 * ``parent``: A etree element which will be the parent of the block. 86 the etree. 88 Note that both the ``parent`` and ``etree`` keywords are pointers 99 * ``parent``: A etree element which is the parent of the current block. 155 li = markdown.etree.SubElement(parent, 'li') 206 pre = markdown.etree.SubElement(parent, 'pre') 207 code = markdown.etree.SubElement(pre, 'code') 240 quote = markdown.etree.SubElement(parent, 'blockquote' [all...] |
inlinepatterns.py | 177 el = markdown.etree.Element(self.tag) 185 return markdown.etree.Element(self.tag) 195 el = markdown.etree.Element(self.tag) 208 el1 = markdown.etree.Element(tag1) 209 el2 = markdown.etree.SubElement(el1, tag2) 226 el = markdown.etree.Element("a") 278 el = markdown.etree.Element("img") 316 el = markdown.etree.Element('a') 329 el = markdown.etree.Element("img") 340 el = markdown.etree.Element("a" [all...] |
html4.py | 41 ElementTree = markdown.etree.ElementTree 42 QName = markdown.etree.QName 43 Comment = markdown.etree.Comment 44 PI = markdown.etree.PI 45 ProcessingInstruction = markdown.etree.ProcessingInstruction
|
__init__.py | 170 # Extensions should use "markdown.etree" instead of "etree" (or do `from 171 # markdown import etree`). Do not import it by yourself. 173 etree = etree_loader.importETree() variable 305 'xhtml' : etree.tostring, 306 'xhtml1': etree.tostring,
|
/external/markdown/markdown/extensions/ |
rss.py | 2 from markdown import etree namespace 65 rss = etree.Element("rss") 68 channel = etree.SubElement(rss, "channel") 74 element = etree.SubElement(channel, tag) 82 item = etree.SubElement(channel, "item") 83 link = etree.SubElement(item, "link") 85 title = etree.SubElement(item, "title") 89 guidElem = etree.SubElement(item, "guid") 95 description = etree.SubElement(item, "description") 101 content = "\n".join([etree.tostring(node [all...] |
tables.py | 18 from markdown import etree namespace 51 table = etree.SubElement(parent, 'table') 52 thead = etree.SubElement(table, 'thead') 54 tbody = etree.SubElement(table, 'tbody') 60 tr = etree.SubElement(parent, 'tr') 68 c = etree.SubElement(tr, tag)
|
def_list.py | 23 from markdown import etree namespace 62 dl = etree.SubElement(parent, 'dl') 65 dt = etree.SubElement(dl, 'dt') 69 dd = etree.SubElement(dl, 'dd') 84 dd = markdown.etree.SubElement(parent, 'dd')
|
toc.py | 12 from markdown import etree namespace 23 div = etree.Element("div") 29 header = etree.SubElement(div, "span") 68 newlist = etree.Element("ul") 90 last_li = etree.Element("li") 91 link = etree.SubElement(last_li, "a") 96 anchor = etree.SubElement(c, "a")
|
footnotes.py | 27 from markdown import etree namespace 120 div = etree.Element("div") 122 hr = etree.SubElement(div, "hr") 123 ol = etree.SubElement(div, "ol") 126 li = etree.SubElement(ol, "li") 129 backlink = etree.Element("a") 142 p = etree.SubElement(li, "p") 263 sup = etree.Element("sup") 264 a = etree.SubElement(sup, "a")
|
abbr.py | 27 from markdown import etree namespace 85 abbr = etree.Element('abbr')
|
headerid.py | 69 from markdown import etree namespace 111 h = markdown.etree.SubElement(parent, 'h%d' % level)
|
wikilinks.py | 124 a = markdown.etree.Element('a')
|
codehilite.py | 192 # Clear codeblock in etree instance
|
/external/markdown/ |
regression-tests.py | 43 root = markdown.etree.Element("div") 46 self.assertEqual(markdown.etree.tostring(root), "<div><p>foo</p></div>") 52 self.assert_(isinstance(tree, markdown.etree.ElementTree)) 53 self.assert_(markdown.etree.iselement(tree.getroot())) 54 self.assertEqual(markdown.etree.tostring(tree.getroot()),
|
/external/markdown/docs/ |
writing_extensions.txt | 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 tabl [all...] |
/external/eigen/Eigen/src/SuperLUSupport/ |
SuperLUSupport.h | 25 int *perm_c, int *perm_r, int *etree, char *equed, \ 33 PREFIX##gssvx(options, A, perm_c, perm_r, etree, equed, R, C, L, \ 59 int *perm_c, int *perm_r, int *etree, char *equed, \ 67 PREFIX##gsisx(options, A, perm_c, perm_r, etree, equed, R, C, L, \
|
/external/eigen/Eigen/src/SparseCholesky/ |
SimplicialCholesky.h | 708 /* L(k,:) pattern: all nodes reachable in etree from nz in A(0:k-1,k) */ 717 /* follow path from i to root of etree, stop at flagged node */
|
/prebuilts/tools/common/m2/repository/org/python/jython/2.5.3/ |
jython-2.5.3-sources.jar | |
/ndk/ |
ndk-gdb.py | 32 import xml.etree.cElementTree as ElementTree namespace
|