Skip to content

Commit 423258b

Browse files
committed
Update run.md
1 parent 9ede63b commit 423258b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/software/container-engine/resource-hook.md

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

3434
* 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.
3535

36-
```console title="Valid"
36+
```bash title="Valid"
3737
[annotations.com.hooks.ssh]
3838
authorize_ssh_key = "/capstor/scratch/cscs/<username>/tests/edf/authorized_keys"
3939
enabled = "true"
4040
```
4141

42-
```console title="Valid"
42+
```bash title="Valid"
4343
[annotations]
4444
com.hooks.ssh.authorize_ssh_key = "/capstor/scratch/cscs/<username>/tests/edf/authorized_keys"
4545
com.hooks.ssh.enabled = "true"
4646
```
4747

48-
```console {.text .error}
48+
```{.text .error}
4949
[annotations]
5050
com.hooks.ssh.authorize_ssh_key = "/capstor/scratch/cscs/<username>/tests/edf/authorized_keys"
5151

0 commit comments

Comments
 (0)