docs and scripts

This commit is contained in:
Anton
2021-04-11 01:10:25 +03:00
commit a9641468b8
219 changed files with 3655 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
import os.path
import markdownify
BASE_PATH = "build"
SOURCE_PATH = os.path.join(BASE_PATH, "raw.extract.html")
TARGET_PATH = os.path.join(BASE_PATH, "raw.md")
def main():
file = open(SOURCE_PATH)
source = file.read()
file.close()
target = markdownify.markdownify(source)
file = open(TARGET_PATH, "w")
file.write(target)
file.close()
if __name__ == "__main__":
main()