Skip to content

Instantly share code, notes, and snippets.

@extratone
Forked from zaiste/rst_to_md.sh
Created May 27, 2024 13:12
Show Gist options
  • Save extratone/bd60b91e98d8e4b4ecb12a8313be7cd6 to your computer and use it in GitHub Desktop.
Save extratone/bd60b91e98d8e4b4ecb12a8313be7cd6 to your computer and use it in GitHub Desktop.
Convert RST to Markdown using Pandoc
FILES=*.rst
for f in $FILES
do
filename="${f%.*}"
echo "Converting $f to $filename.md"
`pandoc $f -f rst -t markdown -o $filename.md`
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment