OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:inlinepatterns
(Results
1 - 7
of
7
) sorted by null
/external/markdown/markdown/
__init__.py
151
treeprocessor runs
InlinePatterns
against the ElementTree, detecting inline
164
import
inlinepatterns
namespace
249
self.
inlinePatterns
= odict.OrderedDict()
250
self.
inlinePatterns
["backtick"] = \
251
inlinepatterns
.BacktickPattern(
inlinepatterns
.BACKTICK_RE)
252
self.
inlinePatterns
["escape"] = \
253
inlinepatterns
.SimpleTextPattern(
inlinepatterns
.ESCAPE_RE)
254
self.
inlinePatterns
["reference"] =
[
all
...]
treeprocessors.py
92
while patternIndex < len(self.markdown.
inlinePatterns
):
94
self.markdown.
inlinePatterns
.value_for_index(patternIndex),
281
markdown.
inlinepatterns
.handleAttributes(element.text,
288
markdown.
inlinepatterns
.handleAttributes(newChild.tail,
292
markdown.
inlinepatterns
.handleAttributes(newChild.text,
/external/markdown/markdown/extensions/
abbr.py
55
self.markdown.
inlinePatterns
['abbr-%s'%abbr] = \
77
class AbbrPattern(markdown.
inlinepatterns
.Pattern):
81
markdown.
inlinepatterns
.Pattern.__init__(self, pattern)
wikilinks.py
111
md.
inlinePatterns
.add('wikilink', wikilinkPattern, "<not_strong")
114
class WikiLinks(markdown.
inlinepatterns
.Pattern):
116
markdown.
inlinepatterns
.Pattern.__init__(self, pattern)
footnotes.py
64
md.
inlinePatterns
.add("footnote", FootnotePattern(FOOTNOTE_RE, self),
255
class FootnotePattern(markdown.
inlinepatterns
.Pattern):
259
markdown.
inlinepatterns
.Pattern.__init__(self, pattern)
/external/markdown/docs/
writing_extensions.txt
23
* [
InlinePatterns
][]
60
<h3 id="
inlinepatterns
">Inline Patterns</h3>
64
instances of classes that inherit from ``markdown.
inlinepatterns
.Pattern`` or
87
class EmphasisPattern(markdown.
inlinepatterns
.Pattern):
136
the tree and runs the
InlinePatterns
on the text of each Element in the tree.
317
[
InlinePatterns
][]. In such a situation, simply insert the text as you normally
318
would and the text will be automatically run through the
InlinePatterns
.
319
However, if you do *not* want some text to be parsed by
InlinePatterns
,
325
the second cell (``td2``) will be run through
InlinePatterns
latter):
380
* ``md.
inlinePatterns
``
[
all
...]
CHANGE_LOG
85
Oct 7, 2007: Limit recursion on
inlinePatterns
. Added a 'safe' tag
Completed in 54 milliseconds