We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ea0c1a commit f647cfaCopy full SHA for f647cfa
scripts/build.sh
@@ -21,4 +21,13 @@ for episode in $(echo "${episodes}" | jq -r '.collection[] | @base64'); do
21
}
22
23
echo "* [$(_jq '.title')](https://spec.fm/podcasts/swift-unwrapped/$(_jq '.token'))" >> index.md
24
+
25
+ episode_file="$(_jq '.token').md"
26
+ echo "layout: page" > "$episode_file"
27
+ echo "title: \"$(_jq '.title')\"" >> "$episode_file"
28
+ echo "permalink: /episodes/$(_jq '.token')/" >> "$episode_file"
29
+ echo "" >> "$episode_file"
30
+ echo "# $(_jq '.title')" >> "$episode_file"
31
32
+ echo "$(_jq '.long_description')" >> "$episode_file"
33
done
0 commit comments