2016-10-24 00:34:37 +03:00
|
|
|
# hledger csv conversion rules v2
|
|
|
|
# mint.com
|
2016-10-24 00:06:43 +03:00
|
|
|
|
2016-10-24 00:34:37 +03:00
|
|
|
account1 assets:personal:bank:wells fargo:checking
|
2016-10-24 00:06:43 +03:00
|
|
|
|
2016-10-24 00:34:37 +03:00
|
|
|
# 0 1 2 3 4 5 6 7 8
|
|
|
|
#"Date","Description","Original Description","Amount","Transaction Type","Category","Account Name","Labels","Notes"
|
|
|
|
fields date, shortdesc, origdesc, amount, txntype, category, account, labels, notes
|
|
|
|
date-format %-m/%-d/%Y
|
|
|
|
skip 1
|
2016-10-24 00:06:43 +03:00
|
|
|
currency $
|
2016-10-24 00:34:37 +03:00
|
|
|
|
|
|
|
# hopefully "debit" only appears in Transaction Type field
|
|
|
|
if debit
|
|
|
|
amount -%amount
|
|
|
|
|
|
|
|
description: %shortdesc - %origdesc %category %account - %txntype
|
|
|
|
|
|
|
|
account2: expenses:personal:%category
|
|
|
|
|
|
|
|
if Home Improvement
|
|
|
|
account2: expenses:personal:home:home care
|
|
|
|
|