Home
last modified time | relevance | path

Searched refs:INDENT_RE (Results 1 – 2 of 2) sorted by relevance

/external/markdown/markdown/
Dblockprocessors.py116 INDENT_RE = re.compile(r'^(([ ]{%s})+)'% markdown.TAB_LENGTH) variable in ListIndentProcessor
161 m = self.INDENT_RE.match(block)
263 INDENT_RE = re.compile(r'^[ ]{4,7}((\d+\.)|[*+-])[ ]+.*') variable in OListProcessor
310 elif self.INDENT_RE.match(line):
/external/chromium_org/third_party/markdown/
Dblockprocessors.py177 self.INDENT_RE = re.compile(r'^(([ ]{%s})+)'% self.tab_length)
232 m = self.INDENT_RE.match(block)
337 INDENT_RE = re.compile(r'^[ ]{4,7}((\d+\.)|[*+-])[ ]+.*') variable in OListProcessor
422 elif self.INDENT_RE.match(line):