(self, text, inline=False)
| 84 | self.addRaw("({path})".format(path=path)) |
| 85 | |
| 86 | def addCode(self, text, inline=False): |
| 87 | if (inline): |
| 88 | self.content += "`{text}`".format(text=text) |
| 89 | else: |
| 90 | self.addRaw("\n\n```\n{text}```\n\n".format(text=text)) |
| 91 | |
| 92 | def addTable(self, table, noTitle=False): |
| 93 | self.addLinebreak() |