Add pandoc magical markdown reformatter

This commit is contained in:
Chris Bednarski 2015-07-22 19:28:03 -07:00
parent b9c9da7157
commit dd255df412
1 changed files with 4 additions and 1 deletions

View File

@ -12,3 +12,6 @@ build: init
format:
bundle exec htmlbeautifier -t 2 source/*.erb
bundle exec htmlbeautifier -t 2 source/layouts/*.erb
pandoc -v > /dev/null && find . -iname "*.html.markdown" | xargs -I{} bash -c "pandoc -r markdown -w markdown --tab-stop=2 --atx-headers -s --columns=80 {} > {}.new"\; || true
pandoc -v > /dev/null && find . -iname "*.html.markdown" | xargs -I{} bash -c "mv {}.new {}"\; || true