abstreet/format_md.sh
2019-04-21 15:59:04 -07:00

9 lines
237 B
Bash
Executable File

#!/bin/bash
set -e
# Ignore notes; they're not important
for x in `find | grep '.md$' | grep -v design/notes | grep -v TODO_ | grep -v CHANGELOG.md`; do
~/npm/node_modules/prettier/bin-prettier.js --write --prose-wrap=always $x;
done