(paths)
| 17 | yield chapter_name |
| 18 | |
| 19 | def main(paths): |
| 20 | print(paths) |
| 21 | if paths: |
| 22 | chapter_names = [p.replace('.html', '').replace('.asciidoc', '') for p in paths] |
| 23 | else: |
| 24 | chapter_names = all_chapter_names() |
| 25 | for chapter_name in chapter_names: |
| 26 | render_images(chapter_name) |
| 27 | |
| 28 | |
| 29 | def render_images(chapter_name): |
no test coverage detected