From fcce172f1c762b82c70e14405cd4a20cdf37afed Mon Sep 17 00:00:00 2001 From: Akshay Mankar Date: Sat, 27 Jan 2024 14:57:56 +0100 Subject: [PATCH] Show total column in the README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9500266..14f7727 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ way. td { padding:0 0.5em; } td:nth-child(1) { white-space:nowrap; } tr:nth-child(even) td { background-color:#eee; } -

Income Statement 2023-01-01..2024-12-31

Commodity20232024
 
Revenues
415.0090.00
87.0010.00
total502.00100.00
 
Expenses
52.400
26.022.24
124.4744.03
total202.8946.27
 
Net:299.1153.73
+

Income Statement 2023-01-01..2024-12-31

Commodity20232024Total
 
Revenues
415.0090.00505.00
87.0010.0097.00
total502.00100.00602.00
 
Expenses
52.40052.40
26.022.2428.26
124.4744.03168.50
total202.8946.27249.16
 
Net:299.1153.73352.84
### Quick start how to use hledger @@ -41,5 +41,5 @@ hledger-web --file ./finances.hledger Writing a HTML table to the README ``` -hledger incomestatement --file ./finances.hledger --layout bare --pretty --drop 1 --output-format html --yearly >> README.md +hledger incomestatement --file ./finances.hledger --layout bare --pretty --drop 1 --output-format html --yearly --row-total >> README.md ```