Skip to content

Instantly share code, notes, and snippets.

@zorbax
Created August 6, 2018 21:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save zorbax/41569197100f5798959895c0ecc989d3 to your computer and use it in GitHub Desktop.
Save zorbax/41569197100f5798959895c0ecc989d3 to your computer and use it in GitHub Desktop.
reStructuredText to Markdown
for i in $(ls *rst)
do
filename="${i%.*}"
echo "Converting $i to $filename.md"
pandoc $i -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