Skip to content

Commit 586758e

Browse files
committed
Cleanup
1 parent 87061f8 commit 586758e

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

build_ebook_v2.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,6 @@ def build_pdf_book(self, language: str, markdown_filepath: pathlib.Path) -> None
103103
"-H", "./ebook/listings-setup.tex",
104104
"-o", f"./ebook/Vulkan Tutorial {language}.pdf",
105105
"--pdf-engine=xelatex",
106-
# "--metadata=title:Vulkan Tutorial"
107106
]
108107
)
109108
except subprocess.CalledProcessError as error:
@@ -125,7 +124,6 @@ def build_epub_book(self, language: str, markdown_filepath: pathlib.Path) -> Non
125124
"--toc",
126125
"-o", f"./ebook/Vulkan Tutorial {language}.epub",
127126
"--epub-cover-image=ebook/cover.png",
128-
# "--metadata=title:Vulkan Tutorial"
129127
]
130128
)
131129
except subprocess.CalledProcessError as error:
@@ -217,7 +215,6 @@ def repl(match):
217215

218216
content = re.sub(r"\]\(!([^)]+)\)", repl, content)
219217

220-
# temp_markdown += f"{content}\n\n"
221218
temp_markdown += content + "\n\n"
222219

223220
log.info("Writing markdown file...")

0 commit comments

Comments
 (0)