Skip to content

Instantly share code, notes, and snippets.

@ldong
Forked from hugorodgerbrown/md_to_rst.sh
Last active August 18, 2019 18:26
Show Gist options
  • Save ldong/48f0df6f99396266970d to your computer and use it in GitHub Desktop.
Save ldong/48f0df6f99396266970d to your computer and use it in GitHub Desktop.
convert markdown to rst files
# This script was created to convert a directory full
# of markdown files into rst equivalents. It uses
# pandoc to do the conversion.
#
# 1. Install pandoc from http://johnmacfarlane.net/pandoc/
# 2. Copy this script into the directory containing the .md files
# 3. Ensure that the script has execute permissions
# 4. Run the script
#
# By default this will keep the original .md file
FILES=*.md
for f in $FILES
do
# extension="${f##*.}"
filename="${f%.*}"
echo "Converting $f to $filename.rst"
`pandoc $f -t rst -o $filename.rst`
# uncomment this line to delete the source file.
# rm $f
done
# see https://gist.github.com/ldong/afeb267a772d3a466628 for converting rst to md files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment