bug/8-blog-formatting #9

Merged
ktyl merged 2 commits from bug/8-blog-formatting into main 2022-10-04 22:50:47 +02:00
1 changed files with 1 additions and 4 deletions
Showing only changes of commit a8d1ae42f8 - Show all commits

View File

@ -46,7 +46,7 @@ if not os.path.isdir(dest_dir):
dummy_file = f"{dest_file}.bak"
open(dummy_file, 'w').close()
print(f"{dummy_file} -> {dummy_file}")
print(f"{src_file} -> {dummy_file}")
markdown.markdownFromFile(input=src_file, output=dummy_file, extensions=["fenced_code"])
print(f"{dummy_file} -> {dest_file}")
@ -81,6 +81,3 @@ with open(dummy_file, 'r') as read_file, open(dest_file, 'w') as write_file:
os.remove(dummy_file)
print(f"{src_file} -> {dest_file}")
markdown.markdownFromFile(input=src_file, output=dest_file, extensions=["fenced_code"])