We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Given a transaction like this:
. 2016/Sep/9 account1 xyz * pqr(3)
The exported post entry can include the expression verbatim, as well as the substituted values.
For journal export in XML format, this would be something like this:
<txn> <post delta="120" name="account1" expression="xyz*pqr(3)" substitution="10 * 12" /> <post delta="-120" name="balancedAccount" /> </txn>
For ledger format, we could emit the expressions and substitutions as comments.
Alternatively, we could also achieve the same goal by,
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Given a transaction like this:
The exported post entry can include the expression verbatim, as well as the substituted values.
For journal export in XML format, this would be something like this:
For ledger format, we could emit the expressions and substitutions as comments.
Alternatively, we could also achieve the same goal by,
The text was updated successfully, but these errors were encountered: