hledger/tests/timedot.test
Simon Michael 190233b576 timedot: more org support: dates/entries can be org headlines
Org headline prefixes (stars and space at beginning of line) are ignored.
2020-03-01 14:06:29 -08:00

30 lines
331 B
Plaintext

# 1. basic timedot entry
<
# comment
; another comment
2020-01-01
a:aa 1
b:bb 2
$ hledger -f- print
2020-01-01 *
(a:aa) 1.00
2020-01-01 *
(b:bb) 2.00
>=0
# 2. Org mode headline prefixes are ignored.
<
* 2020-01-01
** a:aa 1
$ hledger -f- print
2020-01-01 *
(a:aa) 1.00
>=0