From 0e84737449f7af220312050166f82dd62ab6c71f Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Sun, 14 Feb 2016 08:27:14 -0800 Subject: [PATCH] make watch, readme updates --- Makefile | 3 +++ README | 20 +++++++++++++++++++- 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 4972ad2..3817a74 100644 --- a/Makefile +++ b/Makefile @@ -1,2 +1,5 @@ index.html: index.md index.tmpl pandoc index.md --template index.tmpl -o index.html + +watch: + fswatch -0 *.{md,tmpl} | xargs -0 -n1 -I{} make diff --git a/README b/README index 7cc405e..9ff1518 100644 --- a/README +++ b/README @@ -1,3 +1,21 @@ - The plaintextaccounting.org website. An informative portal for Ledger, hledger, beancount, and the other ledger-likes. + +Contributing +------------ + +Several ways to contribute changes: + +A. drop link suggestions etc. on the etherpad linked in the site footer +B. fork the github repo linked in the footer, submit a pull request +C. regular contributors can request commit access + +Before committing, rebuild the HTML: + +$ make + +and include it in your commit. + +To run make on each change, install fswatch and: + +$ make watch