Initial commit

This commit is contained in:
NIT_Report
2025-05-21 22:02:34 +09:00
commit 5beaf8abf0
51 changed files with 2210 additions and 0 deletions

14
init.bash Normal file
View File

@@ -0,0 +1,14 @@
#!/bin/bash
[[ -f main.tex ]] && exit 0
reportName="$(basename "$PWD")"
replaceText="s/CHANGEME/$reportName/g"
lualatex --luaonly script/generate-main.lua
sed -i $replaceText README.md
desc_file=$(mktemp repo-description.XXXXXX)
$EDITOR $desc_file
cat $desc_file >> README.md
rm $desc_file