Lines Matching refs:body
111 def format_category(cls, title, body): argument
166 body, body_line)
167 for title_match, title_line, body, body_line
171 def format_category(cls, title, body): argument
174 if not body.endswith('\n\n'):
175 body += '\n'
176 return title + '\n' + body
218 body_split = category.body.splitlines()
232 self.categories[category.name] += category.body
266 for title, body in self.categories.items():
267 if not body:
269 out.write(self.format.format_category(title, body))