aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs/gensamples.sh
diff options
context:
space:
mode:
authorMarvin Borner2024-03-25 18:59:03 +0100
committerMarvin Borner2024-03-25 18:59:48 +0100
commit14e38ce378236cf54924b58396168c1e94f8e6b2 (patch)
treeecbbb75517695de8897a2a9c58aa1a97ec2546f5 /docs/gensamples.sh
parentf8398804d351667a7b887b89f6f70c7d5c407d22 (diff)
Improved samples by adding links to problems
Diffstat (limited to 'docs/gensamples.sh')
-rwxr-xr-xdocs/gensamples.sh15
1 files changed, 14 insertions, 1 deletions
diff --git a/docs/gensamples.sh b/docs/gensamples.sh
index 1734e0a..174d28d 100755
--- a/docs/gensamples.sh
+++ b/docs/gensamples.sh
@@ -17,8 +17,21 @@ for file in $files; do
fi
filename=$(sed s@/@_@g <<<"$name")
links="$links\n<li><a href="$filename.html">$name</a></li>"
+
+ if [ "$prefix" = "euler" ]; then
+ info="<a href='https://projecteuler.net/problem=$(basename "$name" .bruijn)'>Problem description</a>"
+ elif [ "$prefix" = "aoc" ]; then
+ year=$(cut -c5-8 <<<"$name")
+ day=$(cut -c10-11 <<<"$name" | sed 's/^0*//')
+ info="<a href='https://adventofcode.com/$year/day/$day'>Problem description</a>"
+ elif [ "$prefix" = "rosetta" ]; then
+ info="<a href='https://rosettacode.org/wiki/$(basename "$name" .bruijn)'>Problem description</a>"
+ else
+ info=""
+ fi
+
awk 'NR==FNR { gsub("<", "\\&lt;", $0); gsub(">", "\\&gt;", $0); a[n++]=$0; next } /CONTENT/ { for (i=0;i<n;++i) print a[i]; next } 1' "$file" content.template >"samples/$filename.html"
- sed -i -e "s@NAME@$name@g" "samples/$filename.html"
+ sed -i -e "s@NAME@$name@g" -e "s@INFO@$info@g" "samples/$filename.html"
done
sed -e "s@LINKS@$links@g" samples.template >samples/index.html