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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment