Method
addTableHTML
(self, table, noTitle=False)
Source from the content-addressed store, hash-verified
| 42 | self.addLine(' | '.join(row)) |
| 43 | |
| 44 | def addTableHTML(self, table, noTitle=False): |
| 45 | self.addRaw("<table>") |
| 46 | for row in table: |
| 47 | self.addRaw("<tr>") |
| 48 | for cell in row: |
| 49 | self.addRaw("<td>") |
| 50 | self.addLine("{cell}".format(cell=cell)) |
| 51 | self.addRaw("</td>") |
| 52 | self.addRaw("</tr>") |
| 53 | self.addRaw("</table>") |
| 54 | |
| 55 | def getCodeLink(formatter, schema): |
| 56 | formatter = formatter.clone() |
Callers
nothing calls this directly
Tested by
no test coverage detected