mirror of
https://github.com/tridactyl/tridactyl.git
synced 2026-09-10 15:26:18 -04:00
21 lines
541 B
Bash
Executable file
21 lines
541 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Combine tutorial markdown and template
|
|
|
|
if ! cd src/static/clippy; then
|
|
echo "Failed to cd in src/static/clippy. Aborting."
|
|
exit
|
|
fi
|
|
|
|
pages=$(ls ./*.md)
|
|
dest="../../../generated/static/clippy/"
|
|
|
|
for page in $pages
|
|
do
|
|
fileroot=$(echo "$page" | cut -d'.' -f-2)
|
|
sed "/REPLACETHIS/,$ d" tutor.template.html > "$dest$fileroot.html"
|
|
"$(yarn bin)/marked" "$page" >> "$dest$fileroot.html"
|
|
sed "1,/REPLACETHIS/ d" tutor.template.html >> "$dest$fileroot.html"
|
|
sed -i "s|\.md|.html|g" "$dest$fileroot.html"
|
|
done
|