(file_name: str)
| 199 | |
| 200 | |
| 201 | def test(file_name: str): |
| 202 | with open(file_name) as f: |
| 203 | content = f.read() |
| 204 | blocks = split_markdown(content, file_name) |
| 205 | for block in blocks: |
| 206 | print(block.getText()) |
| 207 | |
| 208 | |
| 209 | if __name__ == '__main__': |
no test coverage detected