Created
April 26, 2012 23:14
-
-
Save bzerangue/2504041 to your computer and use it in GitHub Desktop.
RECURSIVELY Bash convert all your html to markdown files (with Pandoc)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
Thank you! Helped me to convert multiple folders of .md files to .docx and saved a lot of time