Commit dd255df4 authored by Chris Bednarski's avatar Chris Bednarski

Add pandoc magical markdown reformatter

parent b9c9da71
......@@ -11,4 +11,7 @@ build: init
format:
bundle exec htmlbeautifier -t 2 source/*.erb
bundle exec htmlbeautifier -t 2 source/layouts/*.erb
\ No newline at end of file
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
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment