Skip to content

Commit

Permalink
docs(fix): code blocks with titles (#297)
Browse files Browse the repository at this point in the history
  • Loading branch information
dbrennand and cidrblock authored Jul 10, 2024
1 parent 1ecc08e commit a6c4819
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/container.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ The below example shows how to make a custom EE that adds the `amazon.aws` and `

1. Create an `execution-environment.yml` file with the following content.

```yaml title=execution-environment.yml
```yaml title="execution-environment.yml"
---
version: 3

Expand All @@ -58,11 +58,11 @@ The below example shows how to make a custom EE that adds the `amazon.aws` and `
2. Populate `requirements.txt` and `requirements.yml` with the respective contents.

```text title=requirements.txt
```text title="requirements.txt"
ansible-pylibssh==1.1.0
```

```yaml title=requirements.yml
```yaml title="requirements.yml"
---
collections:
- name: amazon.aws
Expand Down Expand Up @@ -117,14 +117,14 @@ If the `user.signingkey` in the `gitconfig` points directly public key on the fi

If only one key is preset, the `ssh-add` command can be used for key retrieval in the user's `gitconfig`:

```toml title=~/.gitconfig
```toml title="~/.gitconfig"
[gpg "ssh"]
defaultKeyCommand = ssh-add -L
```

Alternatively, the public key can added in-line in the `gitconfig`

```toml title=~/.gitconfig
```toml title="~/.gitconfig"
[user]
email = johnd@acme.com
name = John Doe
Expand Down

0 comments on commit a6c4819

Please sign in to comment.