My personal website https://leviolson.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
353 B

  1. #! /usr/bin/env bash
  2. PS3="Enter a number: "
  3. OPTIONS=$(ls -1 posts/ | sed -e "s/\..*$//" | uniq | grep -v 'example')
  4. select post in $OPTIONS
  5. do
  6. echo -e "\033[32m"
  7. echo "Compiling: $post.html"
  8. echo -e "\033[33m"
  9. ./node_modules/showdown/bin/showdown.js makehtml -i posts/$post.md -o posts/$post.html
  10. echo -e "\033[0m"
  11. exit 0
  12. done