Methods to Recursively Bash convert all of your HTML to Markdown recordsdata with Pandoc
You may recursively convert all of your HTML recordsdata to Mardown format in Bash, by utilizing Pandoc.
discover . -name "*.ht*" | whereas learn i; do pandoc -f html -t markdown "$i" -o "${i%.*}.md"; achieved