aboutsummaryrefslogtreecommitdiff
path: root/src/make_index.md.sh
blob: 544b90c2927d356c766374b6a6516b195607942d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/env bash

links="---
title: All Stories
---

"

for i in md/*.md; do
  title=$(grep '^title:' $i | tr -d '"' | sed -E 's/^title: (.*)$/\1/')

  no_ext=$(basename "${i%.*}")
  link="- [$title](/stories/${no_ext}.html)
"

  links+="$link"
done

echo "$links"