(self, buf, language='')
| 90 | self._data = join([self._data, buf]) |
| 91 | |
| 92 | def code_block(self, buf, language=''): |
| 93 | return join(['```', language, '\n', self.list_depth(), buf, '\n', self.list_depth(), '```\n']) |
| 94 | |
| 95 | def prettify_doc(self, doc): |
| 96 | punctuation_marks = ['.', '!', '?'] |
nothing calls this directly
no test coverage detected