├── .aspell.en.prepl ├── .aspell.en.pws ├── .editorconfig ├── .github ├── FUNDING.yaml └── workflows │ └── ci.yaml ├── .gitignore ├── .pyspelling.yaml ├── .yamllint ├── AUTHORS ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── bin ├── ledger2beancount └── ledger2beancount-ledger-config ├── cpanfile ├── devel ├── release-process.md └── spell-check ├── docs ├── authors.md ├── changelog.md ├── compatibility.md ├── configuration.md ├── contributing.md ├── features.md ├── guide.md ├── index.md ├── installation.md ├── ledger2beancount.1.scd ├── ledger2beancount.5.scd ├── license.md ├── limitations.md ├── tips.md └── usage.md ├── examples ├── illustrated.ledger ├── illustrated.yaml └── simple.ledger ├── ledger2beancount.yaml ├── misc └── initial-git-import.sh ├── mkdocs.yml ├── requirements.txt ├── tests ├── README.md ├── accounts.beancount ├── accounts.header ├── accounts.ledger ├── accounts.yaml ├── amounts-decimal-comma.beancount ├── amounts-decimal-comma.ledger ├── amounts-decimal-comma.yaml ├── amounts-plus-sign-decimal-comma.beancount ├── amounts-plus-sign-decimal-comma.hledger ├── amounts-plus-sign-decimal-comma.yaml ├── amounts-plus-sign.beancount ├── amounts-plus-sign.hledger ├── amounts.beancount ├── amounts.ledger ├── aux-date.beancount ├── aux-date.ledger ├── balance-assertion.beancount ├── balance-assertion.ledger ├── bug214.beancount ├── bug214.ledger ├── bug237.beancount ├── bug237.ledger ├── bug237.yaml ├── bug245.beancount ├── bug245.hledger ├── bug245.yaml ├── code.beancount ├── code.ledger ├── comments.beancount ├── comments.ledger ├── commodities.beancount ├── commodities.ledger ├── dates-month.beancount ├── dates-month.ledger ├── dates-month.yaml ├── dates.beancount ├── dates.ledger ├── dates.yaml ├── directives.beancount ├── directives.ledger ├── fixated.beancount ├── fixated.ledger ├── flags.beancount ├── flags.ledger ├── hledger.beancount ├── hledger.hledger ├── hledger.yaml ├── ignore.beancount ├── ignore.ledger ├── ignore.yaml ├── include1.beancount ├── include1.ledger ├── include2.beancount ├── include2.ledger ├── include3.beancount ├── include3.ledger ├── ledger2beancount.yaml ├── lots.beancount ├── lots.header ├── lots.ledger ├── lots.yaml ├── metadata.beancount ├── metadata.ledger ├── narration.beancount ├── narration.ledger ├── no-config.beancount ├── no-config.ledger ├── no-config.yaml ├── non-standard-account-root.beancount ├── non-standard-account-root.ledger ├── option-move_posting_tags.beancount ├── option-move_posting_tags.ledger ├── option-move_posting_tags.yaml ├── payee.beancount ├── payee.ledger ├── prices.beancount ├── prices.ledger ├── runtests ├── spacing.beancount ├── spacing.ledger ├── tags.beancount ├── tags.ledger ├── transactions.beancount ├── transactions.ledger ├── virtual-postings.beancount ├── virtual-postings.ledger └── virtual-postings.yaml └── themes └── versions.html /.aspell.en.prepl: -------------------------------------------------------------------------------- 1 | personal_repl-1.1 en 0 utf-8 2 | -------------------------------------------------------------------------------- /.aspell.en.pws: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/.aspell.en.pws -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yaml: -------------------------------------------------------------------------------- 1 | github: tbm 2 | custom: ["https://paypal.me/MartinMichlmayr"] 3 | -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/.gitignore -------------------------------------------------------------------------------- /.pyspelling.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/.pyspelling.yaml -------------------------------------------------------------------------------- /.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/.yamllint -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | Stefano Zacchiroli 2 | Martin Michlmayr 3 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/README.md -------------------------------------------------------------------------------- /bin/ledger2beancount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/bin/ledger2beancount -------------------------------------------------------------------------------- /bin/ledger2beancount-ledger-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/bin/ledger2beancount-ledger-config -------------------------------------------------------------------------------- /cpanfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/cpanfile -------------------------------------------------------------------------------- /devel/release-process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/devel/release-process.md -------------------------------------------------------------------------------- /devel/spell-check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/devel/spell-check -------------------------------------------------------------------------------- /docs/authors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/docs/authors.md -------------------------------------------------------------------------------- /docs/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/docs/changelog.md -------------------------------------------------------------------------------- /docs/compatibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/docs/compatibility.md -------------------------------------------------------------------------------- /docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/docs/configuration.md -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/docs/contributing.md -------------------------------------------------------------------------------- /docs/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/docs/features.md -------------------------------------------------------------------------------- /docs/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/docs/guide.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/docs/installation.md -------------------------------------------------------------------------------- /docs/ledger2beancount.1.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/docs/ledger2beancount.1.scd -------------------------------------------------------------------------------- /docs/ledger2beancount.5.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/docs/ledger2beancount.5.scd -------------------------------------------------------------------------------- /docs/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/docs/license.md -------------------------------------------------------------------------------- /docs/limitations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/docs/limitations.md -------------------------------------------------------------------------------- /docs/tips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/docs/tips.md -------------------------------------------------------------------------------- /docs/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/docs/usage.md -------------------------------------------------------------------------------- /examples/illustrated.ledger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/examples/illustrated.ledger -------------------------------------------------------------------------------- /examples/illustrated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/examples/illustrated.yaml -------------------------------------------------------------------------------- /examples/simple.ledger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/examples/simple.ledger -------------------------------------------------------------------------------- /ledger2beancount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/ledger2beancount.yaml -------------------------------------------------------------------------------- /misc/initial-git-import.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/misc/initial-git-import.sh -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/requirements.txt -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/accounts.beancount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/accounts.beancount -------------------------------------------------------------------------------- /tests/accounts.header: -------------------------------------------------------------------------------- 1 | 2 | option "title" "Test account names" 3 | 4 | -------------------------------------------------------------------------------- /tests/accounts.ledger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/accounts.ledger -------------------------------------------------------------------------------- /tests/accounts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/accounts.yaml -------------------------------------------------------------------------------- /tests/amounts-decimal-comma.beancount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/amounts-decimal-comma.beancount -------------------------------------------------------------------------------- /tests/amounts-decimal-comma.ledger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/amounts-decimal-comma.ledger -------------------------------------------------------------------------------- /tests/amounts-decimal-comma.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | decimal_comma: true 3 | -------------------------------------------------------------------------------- /tests/amounts-plus-sign-decimal-comma.beancount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/amounts-plus-sign-decimal-comma.beancount -------------------------------------------------------------------------------- /tests/amounts-plus-sign-decimal-comma.hledger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/amounts-plus-sign-decimal-comma.hledger -------------------------------------------------------------------------------- /tests/amounts-plus-sign-decimal-comma.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | decimal_comma: true 3 | -------------------------------------------------------------------------------- /tests/amounts-plus-sign.beancount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/amounts-plus-sign.beancount -------------------------------------------------------------------------------- /tests/amounts-plus-sign.hledger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/amounts-plus-sign.hledger -------------------------------------------------------------------------------- /tests/amounts.beancount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/amounts.beancount -------------------------------------------------------------------------------- /tests/amounts.ledger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/amounts.ledger -------------------------------------------------------------------------------- /tests/aux-date.beancount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/aux-date.beancount -------------------------------------------------------------------------------- /tests/aux-date.ledger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/aux-date.ledger -------------------------------------------------------------------------------- /tests/balance-assertion.beancount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/balance-assertion.beancount -------------------------------------------------------------------------------- /tests/balance-assertion.ledger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/balance-assertion.ledger -------------------------------------------------------------------------------- /tests/bug214.beancount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/bug214.beancount -------------------------------------------------------------------------------- /tests/bug214.ledger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/bug214.ledger -------------------------------------------------------------------------------- /tests/bug237.beancount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/bug237.beancount -------------------------------------------------------------------------------- /tests/bug237.ledger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/bug237.ledger -------------------------------------------------------------------------------- /tests/bug237.yaml: -------------------------------------------------------------------------------- 1 | payee_split: 2 | - (?.*) 3 | 4 | narration_tag: thing 5 | -------------------------------------------------------------------------------- /tests/bug245.beancount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/bug245.beancount -------------------------------------------------------------------------------- /tests/bug245.hledger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/bug245.hledger -------------------------------------------------------------------------------- /tests/bug245.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | hledger: true 4 | -------------------------------------------------------------------------------- /tests/code.beancount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/code.beancount -------------------------------------------------------------------------------- /tests/code.ledger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/code.ledger -------------------------------------------------------------------------------- /tests/comments.beancount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/comments.beancount -------------------------------------------------------------------------------- /tests/comments.ledger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/comments.ledger -------------------------------------------------------------------------------- /tests/commodities.beancount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/commodities.beancount -------------------------------------------------------------------------------- /tests/commodities.ledger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/commodities.ledger -------------------------------------------------------------------------------- /tests/dates-month.beancount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/dates-month.beancount -------------------------------------------------------------------------------- /tests/dates-month.ledger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/dates-month.ledger -------------------------------------------------------------------------------- /tests/dates-month.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | date_format: "%Y-%b-%d" 3 | -------------------------------------------------------------------------------- /tests/dates.beancount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/dates.beancount -------------------------------------------------------------------------------- /tests/dates.ledger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/dates.ledger -------------------------------------------------------------------------------- /tests/dates.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | date_format: "%Y/%m/%d" 3 | -------------------------------------------------------------------------------- /tests/directives.beancount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/directives.beancount -------------------------------------------------------------------------------- /tests/directives.ledger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/directives.ledger -------------------------------------------------------------------------------- /tests/fixated.beancount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/fixated.beancount -------------------------------------------------------------------------------- /tests/fixated.ledger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/fixated.ledger -------------------------------------------------------------------------------- /tests/flags.beancount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/flags.beancount -------------------------------------------------------------------------------- /tests/flags.ledger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/flags.ledger -------------------------------------------------------------------------------- /tests/hledger.beancount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/hledger.beancount -------------------------------------------------------------------------------- /tests/hledger.hledger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/hledger.hledger -------------------------------------------------------------------------------- /tests/hledger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/hledger.yaml -------------------------------------------------------------------------------- /tests/ignore.beancount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/ignore.beancount -------------------------------------------------------------------------------- /tests/ignore.ledger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/ignore.ledger -------------------------------------------------------------------------------- /tests/ignore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/ignore.yaml -------------------------------------------------------------------------------- /tests/include1.beancount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/include1.beancount -------------------------------------------------------------------------------- /tests/include1.ledger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/include1.ledger -------------------------------------------------------------------------------- /tests/include2.beancount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/include2.beancount -------------------------------------------------------------------------------- /tests/include2.ledger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/include2.ledger -------------------------------------------------------------------------------- /tests/include3.beancount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/include3.beancount -------------------------------------------------------------------------------- /tests/include3.ledger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/include3.ledger -------------------------------------------------------------------------------- /tests/ledger2beancount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/ledger2beancount.yaml -------------------------------------------------------------------------------- /tests/lots.beancount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/lots.beancount -------------------------------------------------------------------------------- /tests/lots.header: -------------------------------------------------------------------------------- 1 | option "inferred_tolerance_default" "GBP:0.004" 2 | 3 | -------------------------------------------------------------------------------- /tests/lots.ledger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/lots.ledger -------------------------------------------------------------------------------- /tests/lots.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/lots.yaml -------------------------------------------------------------------------------- /tests/metadata.beancount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/metadata.beancount -------------------------------------------------------------------------------- /tests/metadata.ledger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/metadata.ledger -------------------------------------------------------------------------------- /tests/narration.beancount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/narration.beancount -------------------------------------------------------------------------------- /tests/narration.ledger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/narration.ledger -------------------------------------------------------------------------------- /tests/no-config.beancount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/no-config.beancount -------------------------------------------------------------------------------- /tests/no-config.ledger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/no-config.ledger -------------------------------------------------------------------------------- /tests/no-config.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | # empty config file 3 | -------------------------------------------------------------------------------- /tests/non-standard-account-root.beancount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/non-standard-account-root.beancount -------------------------------------------------------------------------------- /tests/non-standard-account-root.ledger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/non-standard-account-root.ledger -------------------------------------------------------------------------------- /tests/option-move_posting_tags.beancount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/option-move_posting_tags.beancount -------------------------------------------------------------------------------- /tests/option-move_posting_tags.ledger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/option-move_posting_tags.ledger -------------------------------------------------------------------------------- /tests/option-move_posting_tags.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/option-move_posting_tags.yaml -------------------------------------------------------------------------------- /tests/payee.beancount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/payee.beancount -------------------------------------------------------------------------------- /tests/payee.ledger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/payee.ledger -------------------------------------------------------------------------------- /tests/prices.beancount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/prices.beancount -------------------------------------------------------------------------------- /tests/prices.ledger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/prices.ledger -------------------------------------------------------------------------------- /tests/runtests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/runtests -------------------------------------------------------------------------------- /tests/spacing.beancount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/spacing.beancount -------------------------------------------------------------------------------- /tests/spacing.ledger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/spacing.ledger -------------------------------------------------------------------------------- /tests/tags.beancount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/tags.beancount -------------------------------------------------------------------------------- /tests/tags.ledger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/tags.ledger -------------------------------------------------------------------------------- /tests/transactions.beancount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/transactions.beancount -------------------------------------------------------------------------------- /tests/transactions.ledger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/transactions.ledger -------------------------------------------------------------------------------- /tests/virtual-postings.beancount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/virtual-postings.beancount -------------------------------------------------------------------------------- /tests/virtual-postings.ledger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/tests/virtual-postings.ledger -------------------------------------------------------------------------------- /tests/virtual-postings.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | convert_virtual: true 3 | -------------------------------------------------------------------------------- /themes/versions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beancount/ledger2beancount/HEAD/themes/versions.html --------------------------------------------------------------------------------