Skip to content

Instantly share code, notes, and snippets.

View OldManUmby's full-sized avatar
🤔
Working on ttRPG projects and such!

Old Man Umby OldManUmby

🤔
Working on ttRPG projects and such!
View GitHub Profile
@bzerangue
bzerangue / html2md-with-pandoc.sh
Created April 26, 2012 23:14
RECURSIVELY Bash convert all your html to markdown files (with Pandoc)
find . -name "*.ht*" | while read i; do pandoc -f html -t markdown "$i" -o "${i%.*}.md"; done