Skip to content

Instantly share code, notes, and snippets.

@macagua
Forked from wilmoore/convert.sh
Created February 26, 2016 19:41
Show Gist options
  • Save macagua/845ba9024be4bb5492e2 to your computer and use it in GitHub Desktop.
Save macagua/845ba9024be4bb5492e2 to your computer and use it in GitHub Desktop.
convert markdown to reStructured Text (Thanks Doctrine2) - https://github.com/doctrine/dbal-documentation/blob/master/convert.sh
#!/bin/bash
FILES=`find -iname *.txt -print`
for FILE in $FILES
do
# replace the + to # chars
sed -i -r 's/^([+]{4})\s/#### /' $FILE
sed -i -r 's/^([+]{3})\s/### /' $FILE
sed -i -r 's/^([+]{2})\s/## /' $FILE
sed -i -r 's/^([+]{1})\s/# /' $FILE
sed -i -r 's/(\[php\])/<?php/' $FILE
# convert markdown to reStructured Text
pandoc -f markdown -t rst $FILE > ${FILE%.txt}.rst
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment