Update README.md

This commit is contained in:
2025-01-31 16:50:03 +01:00
committed by GitHub
parent bd5cf2a81e
commit 6b1abd1ae0

View File

@@ -19,6 +19,7 @@ Ends with `.mini` i.e. `config.mini`.
- Comments are denoted by `#` and may only appear on separate lines. - Comments are denoted by `#` and may only appear on separate lines.
- Cases are sensitive (for both names and values), except where otherwise noted. - Cases are sensitive (for both names and values), except where otherwise noted.
- The underlying size of any type is application specific. - The underlying size of any type is application specific.
- The parsing behavior of an illformed file is undefined.
## Supported Data Types ## Supported Data Types
@@ -43,7 +44,7 @@ The format supports the following data types:
- `\t` for a tab - `\t` for a tab
- `\\` for a backslash - `\\` for a backslash
- Strings may be empty. - Strings may be empty.
- Example: `string = "My string` - Example: `string = "My string"`
- Example: `string = "Line 1\nLine 2"` - Example: `string = "Line 1\nLine 2"`
- Example: `string = "Tab\tSeparated"` - Example: `string = "Tab\tSeparated"`
- Example: `string = "My \"escaped\" String"` - Example: `string = "My \"escaped\" String"`