From 98d8909bfaaaeac2905b06cf834e3dbeac6b626e Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Thu, 26 Jan 2017 09:14:54 -0800 Subject: [PATCH] site: cookbook: start collecting journal entries [ci skip] --- Shake.hs | 1 + site/docs.md | 1 + site/entries.md | 12 ++++++++++++ 3 files changed, 14 insertions(+) create mode 100644 site/entries.md diff --git a/Shake.hs b/Shake.hs index 510849574..f7cd9493c 100755 --- a/Shake.hs +++ b/Shake.hs @@ -137,6 +137,7 @@ main = do "site/account-aliases.md" ,"site/account-separator.md" ,"site/csv-import.md" + ,"site/entries.md" ] -- cookbook pages combined, ready for web output by hakyll diff --git a/site/docs.md b/site/docs.md index 5bff73814..a7b1e306d 100644 --- a/site/docs.md +++ b/site/docs.md @@ -89,6 +89,7 @@ Practical recipes on one page, including:
+[Common journal entries](entries.html)\ [How to read CSV files](csv-import.html)\ [How to use account aliases](account-aliases.html)\ [How to use another account separator character](account-separator.html)\ diff --git a/site/entries.md b/site/entries.md new file mode 100644 index 000000000..77de5790b --- /dev/null +++ b/site/entries.md @@ -0,0 +1,12 @@ +# Common Journal Entries + +Example hledger journal entries for various kinds of transaction. + +A purchase: +```journal +2017/1/26 market + expenses:food $10 + assets:cash +``` + +Please add more. \ No newline at end of file