aboutsummaryrefslogtreecommitdiff
path: root/src/gen/gen_index.sh
diff options
context:
space:
mode:
authorCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2024-10-24 20:03:03 -0500
committerCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2024-10-24 20:03:03 -0500
commit72685228a7aacd6daa44da3833ac2eaeb80d1e39 (patch)
treee86bf47796f74a943fc810f89b36f100b799425e /src/gen/gen_index.sh
parent46f8080b710fd4ece1f1eb56418888f8991fe27d (diff)
move some stuff around
Diffstat (limited to 'src/gen/gen_index.sh')
-rwxr-xr-xsrc/gen/gen_index.sh11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/gen/gen_index.sh b/src/gen/gen_index.sh
deleted file mode 100755
index 516f594..0000000
--- a/src/gen/gen_index.sh
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/usr/bin/env bash
-
-file="---\ntitle: All Stories\n---\n"
-
-for i in md/*.md; do
- title=$(sed -nE 's/^title: "?(.*)("?)$/\1/p' "$i")
- no_ext=$(basename "$i" .md)
- file+="\n- [$title](/stories/${no_ext}.html)"
-done
-
-echo -e "$file"