(self, doc)
| 93 | return join(['```', language, '\n', self.list_depth(), buf, '\n', self.list_depth(), '```\n']) |
| 94 | |
| 95 | def prettify_doc(self, doc): |
| 96 | punctuation_marks = ['.', '!', '?'] |
| 97 | doc = doc.strip() |
| 98 | doc += '' if doc[-1:] in punctuation_marks else '.' |
| 99 | return doc |
| 100 | |
| 101 | |
| 102 | def italic(buf): |
no outgoing calls
no test coverage detected