()
| 92 | |
| 93 | |
| 94 | def generate_markdown_preface() -> str: |
| 95 | current_date = datetime.now().strftime("%B %Y") |
| 96 | |
| 97 | return "\n".join( |
| 98 | [ |
| 99 | "% Vulkan Tutorial", |
| 100 | "% Alexander Overvoorde", |
| 101 | f"% {current_date}", |
| 102 | ] |
| 103 | ) |
| 104 | |
| 105 | |
| 106 | def generate_markdown_chapter( |
no outgoing calls
no test coverage detected