Home
last modified time | relevance | path

Searched refs:section_title (Results 1 – 3 of 3) sorted by relevance

/external/tensorflow/tensorflow/tools/docs/
Dpy_guide_parser.py60 section_title = line.strip()[3:]
65 tag = re.sub('[^a-zA-Z0-9]+', '_', section_title)
74 self.process_section(i, section_title, tag)
92 def process_section(self, line_number, section_title, tag): argument
Dgenerate_lib.py370 def __init__(self, base_name, title, section_title, section_tag): argument
373 self.link_text = (('%s > %s' % (title, section_title))
374 if section_title else title)
392 self.section_title = None
400 def process_section(self, _, section_title, tag): argument
401 self.section_title = section_title
409 _GuideRef(self.base_name, self.title, self.section_title,
429 def process_section(self, line_number, section_title, tag): argument
430 self.replace_line(line_number, '<h2 id="%s">%s</h2>' % (tag, section_title))
Dpy_guide_parser_test.py36 def process_section(self, line_number, section_title, tag): argument
37 self.calls.append((line_number, 's', '%s : %s' % (section_title, tag)))