OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:postprocessors
(Results
1 - 3
of
3
) sorted by null
/external/markdown/markdown/extensions/
html_tidy.py
48
# Add TidyProcessor to
postprocessors
49
md.
postprocessors
['tidy'] = TidyProcessor(md)
52
class TidyProcessor(markdown.
postprocessors
.Postprocessor):
footnotes.py
72
md.
postprocessors
.add("footnote", FootnotePostprocessor(self),
297
class FootnotePostprocessor(markdown.
postprocessors
.Postprocessor):
/external/markdown/markdown/
__init__.py
165
import
postprocessors
namespace
293
#
Postprocessors
- finishing touches.
294
self.
postprocessors
= odict.OrderedDict()
295
self.
postprocessors
["raw_html"] = \
296
postprocessors
.RawHtmlPostprocessor(self)
297
self.
postprocessors
["amp_substitute"] = \
298
postprocessors
.AndSubstitutePostprocessor()
415
for pp in self.
postprocessors
.values():
Completed in 245 milliseconds