initial commit

This commit is contained in:
2023-11-11 11:23:51 -07:00
parent 9068d4bd33
commit 6d6e138210
261 changed files with 23107 additions and 2 deletions

5
random/conver_2_dokuwiki.sh Executable file
View File

@@ -0,0 +1,5 @@
for file in *.md
do
output="${file%.md}.txt"
pandoc -f markdown -t dokuwiki -o "$output" "$file"
done