the files which are used to populate each section of the book
| 29 | |
| 30 | @dataclasses.dataclass |
| 31 | class ChapterData: |
| 32 | """ |
| 33 | the files which are used to populate each section of the book |
| 34 | """ |
| 35 | chapter_root: pathlib.Path |
| 36 | code_supplements: list[pathlib.Path] |
| 37 | |
| 38 | PANDOC_EXE_NAME = "pandoc" |
| 39 |
no outgoing calls
no test coverage detected