Insert a header to the HTML file Parameters: text (str) -- the header text
(self, text)
| 37 | return self.img_dir |
| 38 | |
| 39 | def add_header(self, text): |
| 40 | """Insert a header to the HTML file |
| 41 | |
| 42 | Parameters: |
| 43 | text (str) -- the header text |
| 44 | """ |
| 45 | with self.doc: |
| 46 | h3(text) |
| 47 | |
| 48 | def add_images(self, ims, txts, links, width=400): |
| 49 | """add images to the HTML file |
no outgoing calls
no test coverage detected