How to Recursively Bash convert all your HTML to Markdown files with Pandoc
You can recursively convert all your HTML files to Mardown format in Bash, by using Pandoc. find . \-name "*.ht*" | while read i; do pandoc -f html -t markdown "$i" -o "${i%.*}.md"; done