-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcommodities.toml
51 lines (51 loc) · 1.18 KB
/
commodities.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
###
### This is the Chart of Commodities (and Shares)
###
### Permit empty or missing units and commodities
###
### This option is effective when 'kernel.strict' is true
###
### If this is false, then all postings must have a
### commodity or unit. To have posting without commodity,
### set this to true or disable strict mode.
###
### Valid options are: true, false
permit-empty-commodity = true
###
### List of commodities
###
### This is list of known commodities
###
### Commodity names have same restrictions
### as top-level account name element (ID)
###
### Commody Name must start with character,
### and after that there could be
### '_', '-', '·', numbers and characters.
###
### Characters can be a wide range of
### international UTF-8 characters.
###
### See https://tackler.e257.fi/docs/journal/charsets/ for full list.
###
### Or in other words:
###
### commodity
### = NameStartChar (NameChar)*
###
### NameStartChar
### = <same as for account names>
###
### NameChar
### = <same as for account names>
###
### Example list of commodities:
commodities = [
"€",
"$",
"¥",
"EUR",
"USD",
"He·litre",
"O2·litre"
]