Skip to content

Commit fb25fd1

Browse files
authored
Markdown syntax: avoid a table here because it cannot handle pipes in cells (#495)
1 parent e969326 commit fb25fd1

File tree

1 file changed

+10
-14
lines changed

1 file changed

+10
-14
lines changed

specs/agents/configuration.md

Lines changed: 10 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -33,20 +33,16 @@ emit a log warning about the ignored value.
3333

3434
### Configuration Value Types
3535

36-
The following table enumerates the available configuration types across the
37-
agents:
38-
39-
40-
| Type | Description (if needed) |
41-
|------|-------------------------|
42-
| String | |
43-
| Integer | |
44-
| Float | |
45-
| Boolean | Encoded as a lower-case boolean string: `"false"`, `"true"` |
46-
| List | Encoded as a comma-separated string (whitespace surrounding items should be stripped): `"foo,bar,baz"` |
47-
| Mapping | Encoded as a string, with `"key=value"` pairs separated by commas (whitespace surrounding items should be stripped): `"foo=bar,baz=foo"` |
48-
| Duration | Case-sensitive string with duration encoded using unit suffixes (`ms` for millisecond, `s` for second, `m` for minute). Validating regex: `^(-)?(\d+)(ms|s|m)$` |
49-
| Size | Case-insensitive string with a positive size encoded using unit suffixes (`b` for bytes, `kb` for kilobytes, `mb` for megabytes, `gb` for gigabytes, with a 1024 multiplier between each unit). Validating regex: `^(\d+)(b|kb|mb|gb)$` |
36+
The following list enumerates the available configuration types across the agents:
37+
38+
- `String`
39+
- `Integer`
40+
- `Float`
41+
- `Boolean`: Encoded as a lower-case boolean string: `"false"`, `"true"`.
42+
- `List`: Encoded as a comma-separated string (whitespace surrounding items should be stripped): `"foo,bar,baz"`.
43+
- `Mapping`: Encoded as a string, with `"key=value"` pairs separated by commas (whitespace surrounding items should be stripped): `"foo=bar,baz=foo"`.
44+
- `Duration`: Case-sensitive string with duration encoded using unit suffixes (`ms` for millisecond, `s` for second, `m` for minute). Validating regex: `^(-)?(\d+)(ms|s|m)$`.
45+
- `Size`: Case-insensitive string with a positive size encoded using unit suffixes (`b` for bytes, `kb` for kilobytes, `mb` for megabytes, `gb` for gigabytes, with a 1024 multiplier between each unit). Validating regex: `^(\d+)(b|kb|mb|gb)$`.
5046

5147
#### Duration/Size Config Legacy Considerations
5248

0 commit comments

Comments
 (0)