markdown.sh 479 B

12345678910111213141516
  1. #!/usr/bin/env bash
  2. previews_root=$1
  3. # usually this value: https://raw.githubusercontent.com/dexpota/kitty-themes-website/master
  4. url_root=$2
  5. for f in $(find "$previews_root/previews" -maxdepth 1 -mindepth 1 -type d | sort); do
  6. preview_file="$f"/preview.png
  7. theme=$(basename $f)
  8. relative_path=$(realpath --relative-to="$previews_root" "$preview_file")
  9. header=`basename $theme | sed 's/_/ /g'`
  10. image="![image]($url_root/$relative_path)"
  11. echo \#\# $header
  12. echo $image
  13. done