mirror of
https://github.com/nickpoida/og-aws.git
synced 2025-03-09 15:40:06 +00:00
Run markdownfmt.
This commit is contained in:
parent
352385a776
commit
13e6d8fdd3
3 changed files with 713 additions and 709 deletions
14
admin/reformat.sh
Executable file
14
admin/reformat.sh
Executable file
|
@ -0,0 +1,14 @@
|
|||
#!/bin/bash
|
||||
|
||||
# Put main main Markdown files into canonical syntax (in place!) with markdownfmt.
|
||||
|
||||
set -e -u -o pipefail
|
||||
|
||||
hash markdownfmt >/dev/null 2>&1 || {
|
||||
echo >&2 "markdownfmt missing: Install https://github.com/shurcooL/markdownfmt and re-run"
|
||||
exit 1
|
||||
}
|
||||
|
||||
cd $(dirname $0)/..
|
||||
|
||||
markdownfmt -w README.md CONTRIBUTING.md
|
Loading…
Add table
Add a link
Reference in a new issue