Skip to content

Commit 659c4dc

Browse files
committed
docs: Update supported constructs in README
1 parent 6d547be commit 659c4dc

File tree

1 file changed

+26
-1
lines changed

1 file changed

+26
-1
lines changed

README.md

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# bash-toml
22

3-
Toml v0.4.0 parser written in pure Bash
3+
Aspiring Toml v1.0.0 parser written in pure Bash
44

55
STATUS: EXPERIMENTAL
66

@@ -15,6 +15,31 @@ EOF
1515
printf '%s' "${TOML[five]}" # value
1616
```
1717

18+
## Support
19+
20+
Support is generally limited at the moment
21+
22+
- Construct: Comment
23+
- Construct: Key
24+
- Value: String (basic)
25+
- Value: String (literal)
26+
27+
### Not Yet Supported
28+
29+
- Value: String (multi-line basic)
30+
- Value: String (multi-line literal)
31+
- Value: Integer
32+
- Value: Float
33+
- Value: Boolean
34+
- Value: Offset Date-Time
35+
- Value: Local Date-Time
36+
- Value: Local Date
37+
- Value: Local Time
38+
- Value: Array
39+
- Value: Inline Table
40+
- Construct: Table
41+
- Construct Array of Tables
42+
1843
## Error Handling
1944

2045
1. Bail Fast

0 commit comments

Comments
 (0)