Simon Michael
Simon Michael
And does it need to be Alpine-specific, or would a generic static aarch64 binary that also worked for other Pi distros be possible ?
I believe GHC doesn't really do cross-compiling, unless possibly via some Nix magic.
Related doc: https://hledger.org/1.26/hledger.html#decimal-marks-digit-group-marks > The [decimal-mark](https://hledger.org/1.26/hledger.html#declaring-the-decimal-mark) directive is best, otherwise [commodity](https://hledger.org/1.26/hledger.html#declaring-commodities) directives will also work. But even with `decimal-mark .` it seems not to complain. I agree, either the commodity...
This is functioning as documented (https://hledger.org/hledger.html#account-display-order) and discussed (#1218), but you're right, to fully control display order you must sometimes declare a parent account which then also permits postings to...
A possible workaround: https://hledger.org/scripts.html#hledger-check-postable - check that no postings are made to accounts declared with a postable:n or postable:no tag
It is kind of possible, by using regular expressions. For example, this might work for matching amounts < 10: ``` if %amount ^-?[0-9]\b ``` But it's fragile, so I try...
> it allows users to append transactions to arbitrary files Thanks for the PR and for calling out the above, which does sound like a blocker.
Sure, hledger-lib:Hledger.Journal.Data.journalFilePaths will list all the journal's files.
PS, this worked once - possible some spelunking in code history is useful ?
@ThreeFx, thanks for this. Some ideas to move it forward: - update the docs in hledger.m4.md > Decimal marks, digit group marks - add a test or two, I think...