beancount-parser-lima 0.16.3

A zero-copy parser for Beancount
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# ANOMALY: Lima returns directives in date order
directives {
  date { year: 2000 month: 1 day: 1 }
  open { account: "Assets:Before" }
}
directives {
  date { year: 2010 month: 1 day: 1 }
  close { account: "Assets:Before" }
}
directives {
  date { year: 2010 month: 1 day: 1 }
  note {
    account: "Assets:Before"
    comment: "Something something"
  }
}