Skip to content

Commit

Permalink
docs: fix some Hugo-Docsy warnings
Browse files Browse the repository at this point in the history
Signed-off-by: Mahe Tardy <[email protected]>
  • Loading branch information
mtardy committed Dec 4, 2023
1 parent 02a2ffc commit 719ebfb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions docs/content/en/docs/installation/tetra-cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,35 +47,35 @@ The architecture amd64 is also referred to as x86_64 or Intel, and arm64 is also
referred to as aarch64 or Apple Silicon for Mac computers.
{{< /note >}}

{{< tabpane persistLang=false >}}
{{< tabpane lang="shell" >}}

{{< tab header="Linux amd64" lang="shell" >}}
{{< tab header="Linux amd64" >}}
curl -L https://github.com/cilium/tetragon/releases/latest/download/tetra-linux-amd64.tar.gz | tar -xz
sudo mv tetra /usr/local/bin
{{< /tab >}}

{{< tab header="Linux arm64" lang="shell" >}}
{{< tab header="Linux arm64" >}}
curl -L https://github.com/cilium/tetragon/releases/latest/download/tetra-linux-arm64.tar.gz | tar -xz
sudo mv tetra /usr/local/bin
{{< /tab >}}

{{< tab header="macOS amd64" lang="shell" >}}
{{< tab header="macOS amd64" >}}
curl -L https://github.com/cilium/tetragon/releases/latest/download/tetra-darwin-amd64.tar.gz | tar -xz
sudo mv tetra /usr/local/bin
{{< /tab >}}

{{< tab header="macOS arm64" lang="shell" >}}
{{< tab header="macOS arm64" >}}
curl -L https://github.com/cilium/tetragon/releases/latest/download/tetra-darwin-arm64.tar.gz | tar -xz
sudo mv tetra /usr/local/bin
{{< /tab >}}

{{< tab header="Windows amd64" lang="shell" >}}
{{< tab header="Windows amd64" >}}
curl -L https://github.com/cilium/tetragon/releases/latest/download/tetra-windows-amd64.tar.gz
tar -xz tetra-windows-amd64.tar.gz
# move the binary in a directory in your PATH
{{< /tab >}}

{{< tab header="Windows arm64" lang="shell" >}}
{{< tab header="Windows arm64" >}}
curl -L https://github.com/cilium/tetragon/releases/latest/download/tetra-windows-arm64.tar.gz
tar -xz tetra-windows-arm64.tar.gz
# move the binary in a directory in your PATH
Expand Down
2 changes: 1 addition & 1 deletion docs/hugo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ enableRobotsTXT = true
enableGitInfo = true

# Comment out to enable taxonomies in Docsy
disableKinds = ["taxonomy", "taxonomyTerm"]
disableKinds = ["taxonomy"]

# Configure how URLs look like per section.
[permalinks]
Expand Down

0 comments on commit 719ebfb

Please sign in to comment.