Event
Syntax:
[YYYY-MM-DD] event NAME VALUE
Explanation:
NAME
andVALUE
can use double-quotes like Beancount;- If no double-quotes found, the first word (exclude date) will be saved as
NAME
, the rest part will be saved asVALUE
;
Examples:
// Input, traditional Beancount format
2017-01-02 event "location" "Paris, France"
// Output
2017-01-02 event "location" "Paris, France"
// Input, without double-quotes
event location Paris, France
// Output
2017-01-02 event "location" "Paris, France"