Skip to content

Instantly share code, notes, and snippets.

@maboloshi
Forked from zorbax/rst2md.sh
Last active March 9, 2019 11:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maboloshi/97deb0a4d8cfc8d8da20c1e1217ebca2 to your computer and use it in GitHub Desktop.
Save maboloshi/97deb0a4d8cfc8d8da20c1e1217ebca2 to your computer and use it in GitHub Desktop.
[reStructuredText to Markdown] #shell
for i in $(ls *rst)
do
filename="${i%.*}"
echo "Converting $i to $filename.md"
pandoc "$i" -f rst -t gfm -o "$filename.md"
done
@maboloshi
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment