(title, content)
| 186 | |
| 187 | |
| 188 | def export_block(title, content): |
| 189 | print('<div class="block">') |
| 190 | print(f'<h2 id="{title.lower().replace(" ", "-")}">{title}</h2>') |
| 191 | print(content) |
| 192 | print("</div>") |
| 193 | |
| 194 | |
| 195 | def read_files(pattern): |
no outgoing calls
no test coverage detected