abstreet/format_md.sh

14 lines
348 B
Bash
Raw Normal View History

#!/bin/bash
set -e
if [ "$1" != "" ]; then
~/npm/node_modules/prettier/bin-prettier.js --write --prose-wrap=always $1;
exit
fi
# Ignore notes; they're not important
2019-04-22 00:34:31 +03:00
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