HomeSort by relevance Sort by last modified time
    Searched refs:left_tag (Results 1 - 2 of 2) sorted by null

  /external/markdown/markdown/
preprocessors.py 84 def _get_right_tag(self, left_tag, block):
86 tag = p % left_tag
89 return tag.lstrip("<").rstrip(">"), i + len(p)-2 + len(left_tag)
90 return block.rstrip()[-len(left_tag)-2:-1].lower(), len(block)
92 def _equal_tags(self, left_tag, right_tag):
93 if left_tag == 'div' or left_tag[0] in ['?', '@', '%']: # handle PHP, etc.
95 if ("/" + left_tag) == right_tag:
97 if (right_tag == "--" and left_tag == "--"):
99 elif left_tag == right_tag[1:]
    [all...]
  /external/autotest/tko/parsers/test/
inspect_parser_result_store.py 33 def compare(left_tag, right_tag):
34 missing = set([left_tag, right_tag]).difference(sto.keys())
41 sto[left_tag], sto[right_tag]):

Completed in 125 milliseconds