mirror of
https://github.com/simonmichael/hledger.git
synced 2024-11-13 06:05:17 +03:00
b1f3880c3d
For a long time hledger has auto-detected the file format when it's not known, eg when reading from a file with unusual extension (like .dat or .txt), or from standard input (-f-), or when using the include directive (which currently ignores file extensions). Auto-detecting has been done by trying all readers until one succeeds. This could guess wrong in some cases, but it was so rare that it has been working fine. Recently, more conveniences have been added to timedot format, increasing its overlap with journal format, which makes this kind of auto-detection unreliable. Auto-detection and auto-detection failures are (probably) still pretty rare in practice. But when it does happen it's confusing, giving misleading errors or false successes (eg printing timedot entries instead of a journal error). For predictability and to minimise confusion, hledger no longer tries to guess; when there's no file extension or reader prefix, it assumes journal format. To specify one of the other formats, you must use a standard file extension (.timeclock, .timedot, .csv, .ssv, .tsv), or a reader prefix (-f csv:foo.txt, -f timedot:-). For now, the include directive still tries to autodetect (journal/timeclock/timedot), and this can't be overridden; it will be fixed later. Experimental; testing and feedback welcome.
32 lines
412 B
Plaintext
32 lines
412 B
Plaintext
# Note since 1.17 we need to specify stdin's format explicitly.
|
|
|
|
# 1. basic timedot entry
|
|
<
|
|
# comment
|
|
|
|
; another comment
|
|
2020-01-01
|
|
a:aa 1
|
|
b:bb 2
|
|
|
|
$ hledger -ftimedot:- 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 -ftimedot:- print
|
|
2020-01-01 *
|
|
(a:aa) 1.00
|
|
|
|
>=0
|
|
|