Skip to content

Commit b4034e3

Browse files
committed
Highlight (in)valid usages
1 parent 7f7d859 commit b4034e3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/software/container-engine.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -307,21 +307,21 @@ This can be done in multiple ways in TOML: for example, both of the following us
307307

308308
* Attributes can be added to a table only in one place in the TOML file. In other words, each table must be defined in a single square bracket section. For example, Case 3 in the example below is invalid because the `ssh` table was doubly defined both in the `[annotations]` and in the `[annotations.com.hooks.ssh]` sections. See the [TOML format](https://toml.io/en/) spec for more details.
309309

310-
!!! example "Valid usage"
310+
!!! example ":white_check_mark: Valid usage"
311311
```bash
312312
[annotations.com.hooks.ssh]
313313
authorize_ssh_key = "/capstor/scratch/cscs/<username>/tests/edf/authorized_keys"
314314
enabled = "true"
315315
```
316316

317-
!!! example "Valid usage"
317+
!!! example ":white_check_mark: Valid usage"
318318
```bash
319319
[annotations]
320320
com.hooks.ssh.authorize_ssh_key = "/capstor/scratch/cscs/<username>/tests/edf/authorized_keys"
321321
com.hooks.ssh.enabled = "true"
322322
```
323323

324-
!!! example "**Invalid** usage"
324+
!!! example ":x: Invalid usage"
325325
```bash
326326
[annotations]
327327
com.hooks.ssh.authorize_ssh_key = "/capstor/scratch/cscs/<username>/tests/edf/authorized_keys"

0 commit comments

Comments
 (0)