initial upload

This commit is contained in:
2025-12-17 11:00:57 +08:00
parent 2bc7b24a71
commit a09a73537f
4614 changed files with 3478433 additions and 2 deletions

10
docs/pylagrit/rst_to_md.py Executable file
View File

@@ -0,0 +1,10 @@
import os, sys
dr = '/Users/NKnapp/Desktop/deknapp.github.io/pylagrit/original/_sources/'
output_dr = '/Users/NKnapp/Desktop/deknapp.github.io/pylagrit/on_website/'
for fle in os.listdir(dr):
full_name = os.path.join(dr, fle)
cmd = 'pandoc ' + full_name + ' -f rst -t markdown -s -o ' + output_dr + fle[:-4] + '.md'
os.system(cmd)