Skip to content

Instantly share code, notes, and snippets.

@yjzhang
Created February 1, 2019 23:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yjzhang/1d8c1148ce491249077a2c2e920eaf6e to your computer and use it in GitHub Desktop.
Save yjzhang/1d8c1148ce491249077a2c2e920eaf6e to your computer and use it in GitHub Desktop.
#!/bin/bash
for var in "$@"; do
filename=${var%.*}
#echo $filename
#echo $@
echo writing to $filename.html
pandoc $var --self-contained --toc -c /home/yjzhang/Dropbox/Notes/buttondown.css -s --mathml -o $filename.html
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment