tridactyl/scripts/make_tutorial.sh
2018-05-28 10:22:17 +01:00

16 lines
403 B
Bash
Executable file

#!/bin/sh
# Combine tutorial markdown and template
cd src/static/clippy
pages=$(ls *.md)
dest="../../../generated/static/clippy/"
for page in $pages
do
fileroot=$(echo $page | cut -d'.' -f-1)
sed "/REPLACETHIS/,$ d" tutor.template.html > "$dest$fileroot.html"
$(npm bin)/marked $page >> "$dest$fileroot.html"
sed "1,/REPLACETHIS/ d" tutor.template.html >> "$dest$fileroot.html"
done