Store to move back to normal tex files
This commit is contained in:
@@ -0,0 +1,48 @@
|
||||
import os
|
||||
from typing import List
|
||||
import labels
|
||||
import datetime
|
||||
|
||||
version = "1.0.0"
|
||||
|
||||
print("""
|
||||
▄▄▄ ▄▄▄▄▄▄ ▄▄▄▄▄▄▄ ▄▄▄▄▄▄▄ ▄▄ ▄▄ ▄▄ ▄▄ ▄▄▄▄▄▄▄ ▄▄▄ ▄▄▄▄▄▄▄ ▄▄▄▄▄▄▄ ▄▄▄▄▄▄ ▄▄▄▄▄▄▄
|
||||
█ █ █ █ █ █ █▄█ █ █ █ █ █ █ █ █ █ █ ▄ █ █ █
|
||||
█ █ █ ▄ █▄ ▄█ ▄▄▄█ █ █ █▄█ █ ▄▄▄█ █ █ ▄ █ ▄▄▄█ █ █ █ █ ▄▄▄▄▄█
|
||||
█ █ █ █▄█ █ █ █ █ █▄▄▄█ █ █ █ █▄▄▄█ █ █ █▄█ █ █▄▄▄█ █▄▄█▄█ █▄▄▄▄▄
|
||||
█ █▄▄▄█ █ █ █ █ ▄▄▄██ █ █ ▄ █ ▄▄▄█ █▄▄▄█ ▄▄▄█ ▄▄▄█ ▄▄ █▄▄▄▄▄ █
|
||||
█ █ ▄ █ █ █ █ █▄▄▄█ ▄ █ █ █ █ █ █▄▄▄█ █ █ █ █▄▄▄█ █ █ █▄▄▄▄▄█ █
|
||||
█▄▄▄▄▄▄▄█▄█ █▄▄█ █▄▄▄█ █▄▄▄▄▄▄▄█▄▄█ █▄▄█ █▄▄█ █▄▄█▄▄▄▄▄▄▄█▄▄▄▄▄▄▄█▄▄▄█ █▄▄▄▄▄▄▄█▄▄▄█ █▄█▄▄▄▄▄▄▄█
|
||||
|
||||
|
||||
""")
|
||||
|
||||
|
||||
def load_all_files_of_array(dirname: str, files: List[str]):
|
||||
data = ""
|
||||
for filename in files:
|
||||
with open(dirname + "/" + filename, "r") as file:
|
||||
data += file.read() + "\n\n"
|
||||
|
||||
return data
|
||||
|
||||
|
||||
output = load_all_files_of_array("../src/", ["header.sty"])
|
||||
output += f"\\ProvidesPackage{{janishutz-helpers}}[{datetime.datetime.now().date().isoformat()} v{version}]\n\n"
|
||||
output += load_all_files_of_array("../src/", ["core.sty"])
|
||||
output += load_all_files_of_array("../src/config/", os.listdir("../src/config/"))
|
||||
output += load_all_files_of_array("../src/core/", ["translation.sty"])
|
||||
output += load_all_files_of_array("../src/", ["opts.sty", "style.sty"])
|
||||
# output += load_all_files_of_array("../src/core/", os.listdir("../src/core/"))
|
||||
# output += load_all_files_of_array("../src/style/", os.listdir("../src/style/"))
|
||||
|
||||
# l = labels.generate_labels()
|
||||
# output += l[0] + "\n\n"
|
||||
# output += l[1]
|
||||
|
||||
with open("../janishutz-helpers.sty", "w") as file:
|
||||
file.write(output)
|
||||
|
||||
|
||||
print("==> Built successfully. Output to project-root/janishutz-helpers.sty\n")
|
||||
print("==> ")
|
||||
|
||||
Reference in New Issue
Block a user