Skip to content

Instantly share code, notes, and snippets.

View jsonzilla's full-sized avatar

Jason jsonzilla

View GitHub Profile
@jsonzilla
jsonzilla / html2md-with-pandoc.sh
Created August 27, 2019 15:01 — forked from bzerangue/html2md-with-pandoc.sh
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