Rust library for parsing Ledger-cli input files.
Only a subset of the ledger-cli's file format is implemented.
Supported elements:
Line comments (starting with: ; # % | *
) except comments between postings
Inline comments (starting with ;
)
Transaction headers with format:
DATE[=EDATE] [*|!] [(CODE)] DESC
Transaction postings with format (minimum two spaces or one tab between ACCOUNT
and AMOUNT
):
ACCOUNT AMOUNT [; NOTE]
Commodity prices with format:
P DATE SYMBOL PRICE
```rust extern crate ledger_parser;
let result = ledger_parser::parse(r#"; Example 1 2018-10-01=2018-10-14 ! (123) Marek Ogarek TEST:ABC 123 $1.20 TEST:ABC 123 $1.20"#); ```