(text, size="16px")
| 76 | def h2(title): return f"<h2>{title}</h2>\n" |
| 77 | def h2withId(title, sectionId): return f"<h2 id={sectionId}>{title}</h2>\n" |
| 78 | def p(text, size="16px"): return f'<p style="font-size:{size}; font-weight:normal">{text}</p>\n' |
| 79 | def summaryTable(summary): |
| 80 | s = '<table class="summary-table">\n' |
| 81 | for item in summary: |
no outgoing calls
no test coverage detected