tree-sitter-beancount 2.3.1 → 2.3.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -50,3 +50,42 @@ extra whitespace transaction
50
50
  )
51
51
  (comment)
52
52
  )
53
+
54
+ ===========================
55
+ embedded quotes in strings
56
+ ===========================
57
+
58
+
59
+ 2013-07-11 note Assets:Cash "\"test\""
60
+
61
+ 2013-07-11 * "\"Groups\"" "\"Some things\""
62
+ reference: "\"test\""
63
+ Assets:Cash -50 USD
64
+ Expenses:FIXME
65
+
66
+ ---
67
+
68
+ (file
69
+ (note
70
+ (date)
71
+ (account)
72
+ (string)
73
+ )
74
+ (transaction
75
+ (date)
76
+ (txn)
77
+ (payee)
78
+ (narration)
79
+ (key_value
80
+ (key)
81
+ (value
82
+ (string)))
83
+ (posting
84
+ (account)
85
+ (incomplete_amount
86
+ (unary_number_expr
87
+ (minus)
88
+ (number))
89
+ (currency)))
90
+ (posting
91
+ (account))))