OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:treeprocessors
(Results
1 - 11
of
11
) sorted by null
/external/markdown/markdown/
__init__.py
150
3. A bunch of "
treeprocessors
" are run against the ElementTree. One such
163
import
treeprocessors
namespace
288
self.
treeprocessors
= odict.OrderedDict()
289
self.
treeprocessors
["inline"] =
treeprocessors
.InlineProcessor(self)
290
self.
treeprocessors
["prettify"] = \
291
treeprocessors
.PrettifyTreeprocessor(self)
394
for treeprocessor in self.
treeprocessors
.values():
/external/markdown/markdown/extensions/
rss.py
57
md.
treeprocessors
['rss'] = treeprocessor
61
class RssTreeProcessor(markdown.
treeprocessors
.Treeprocessor):
codehilite.py
178
class HiliteTreeprocessor(markdown.
treeprocessors
.Treeprocessor):
219
md.
treeprocessors
.add("hilite", hiliter, "_begin")
toc.py
15
class TocTreeprocessor(markdown.
treeprocessors
.Treeprocessor):
133
md.
treeprocessors
.add("toc", tocext, "_begin")
footnotes.py
69
md.
treeprocessors
.add("footnote", FootnoteTreeprocessor(self),
273
class FootnoteTreeprocessor(markdown.
treeprocessors
.Treeprocessor):
/external/chromium_org/third_party/markdown/extensions/
attr_list.py
56
from ..
treeprocessors
import Treeprocessor
168
md.
treeprocessors
.add('attr_list', AttrListTreeprocessor(md), '>prettify')
toc.py
47
from ..
treeprocessors
import Treeprocessor
210
prettify = self.markdown.
treeprocessors
.get('prettify')
249
md.
treeprocessors
.add("toc", tocext, "_end")
codehilite.py
56
from ..
treeprocessors
import Treeprocessor
265
md.
treeprocessors
.add("hilite", hiliter, "<inline")
footnotes.py
63
from ..
treeprocessors
import Treeprocessor
115
# This must be before all other
treeprocessors
(i.e., inline and
117
md.
treeprocessors
.add("footnote", FootnoteTreeprocessor(self),
/external/chromium_org/third_party/markdown/
__init__.py
75
from .
treeprocessors
import build_treeprocessors
179
self.
treeprocessors
= build_treeprocessors(self)
298
3. A bunch of "
treeprocessors
" are run against the ElementTree. One
327
for treeprocessor in self.
treeprocessors
.values():
treeprocessors.py
41
""" Build the default
treeprocessors
for Markdown. """
42
treeprocessors
= odict.OrderedDict()
43
treeprocessors
["inline"] = InlineProcessor(md_instance)
44
treeprocessors
["prettify"] = PrettifyTreeprocessor(md_instance)
45
return
treeprocessors
57
Treeprocessors
are run on the ElementTree object before serialization.
63
Treeprocessors
must extend markdown.Treeprocessor.
Completed in 4676 milliseconds