()
| 10 | |
| 11 | |
| 12 | def all_chapter_names(): |
| 13 | for fn in sorted(Path(__file__).absolute().parent.glob('*.html')): |
| 14 | chapter_name = fn.name.replace('.html', '') |
| 15 | if chapter_name == 'book': |
| 16 | continue |
| 17 | yield chapter_name |
| 18 | |
| 19 | def main(paths): |
| 20 | print(paths) |