(self, text, s=1)
| 70 | self.addLine("{header} {text}".format(header=h * '#', text=text), True) |
| 71 | |
| 72 | def addEmphasis(self, text, s=1): |
| 73 | self.addRaw("{stars}{text}{stars}".format(stars=s * '*', text=text)) |
| 74 | |
| 75 | def addList(self, textList): |
| 76 | for text in textList: |