from glob import glob import os import subprocess # https://devdocs.io/python~3.9/library/glob#glob.glob # files = glob("content/**", recursive=True) # print(files) print("---------") all_html = "" folders = glob("content/*") print(folders) for folder in folders: files = glob(folder + "/*") print(files) print("************") for file in files: #print(file) if file.endswith(".md"): print("===========") file = file.replace(" ", "\ ") print(file) html_file = file.replace(".md", ".html") pandoc_cmd = "pandoc -s -c style.css -f markdown -t html " + file + " -o " + html_file os.system(pandoc_cmd) print("standalone html files saved!") pandoc2 = "pandoc -f markdown -t html " + file html_data = subprocess.run(pandoc2, capture_output=True, text=True).stdout #editing the html before creatings the main file # filename = os.path.basename(file) # print("filename", filename) html_data = html_data.replace(' { all_html } """ output = open("booklet.html", "w") output.write(template) # Now open this page in the browser, remember: paged.js needs to be accessed through a webserver. # To run a webserver locally, you can use: # cd SI20/booklet/ # python3 -m http.server # localhost:8000/booklet.html