Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Standardize usage of <TabItem> tag to aid conversion. #1948

Merged
merged 1 commit into from
Aug 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/0-zarf-overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ In the more complex use case, your package consists of updates for many apps/sys
3. `$` Enter the commands into your terminal.

<Tabs>
<TabItem value="Linux" label="Linux">
<TabItem value="Linux">

:::info

Expand Down Expand Up @@ -199,7 +199,7 @@ Zarf has no prerequisites on Linux. However, for this example, we will use Docke
:::

</TabItem>
<TabItem value="macOS" label="macOS">
<TabItem value="macOS">

:::info

Expand Down Expand Up @@ -231,7 +231,7 @@ zarf package deploy sget://defenseunicorns/zarf-hello-world:$(uname -m)
```

</TabItem>
<TabItem value="Windows" label="Windows">
<TabItem value="Windows">

## Windows Commands

Expand Down
12 changes: 6 additions & 6 deletions docs/2-the-zarf-cli/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ You can get the Zarf CLI on your machine in a few different ways. You can use th

<!-- NOTE: The empty line after the '<TabItem ...>' lines are important for the rendering... -->
<Tabs>
<TabItem value="macOS" label="macOS" default>
<TabItem value="macOS">

```bash
brew tap defenseunicorns/tap
Expand All @@ -27,7 +27,7 @@ brew install zarf

</TabItem>

<TabItem value="Linux" label="Linux">
<TabItem value="Linux">

```bash
brew tap defenseunicorns/tap
Expand Down Expand Up @@ -71,17 +71,17 @@ Available Commands:
</details>

<Tabs>
<TabItem value="homebrew" label="Installed via Homebrew" default>
<TabItem value="Installed with Homebrew">

```bash
zarf --help
```

</TabItem>

<TabItem value="custom-install" label="Downloaded from Github">
<TabItem value="Downloaded from Github">

- If you're not sure where the file was downloaded to, a good default place to look is `~/Downloads`.
- If you're not sure where the file was downloaded, a good default place to look is `~/Downloads`.
- While we only say `zarf` for this example command, the name of the binary is the name of the file you downloaded, which will likely have a different name.

```bash
Expand All @@ -91,7 +91,7 @@ chmod +x ~/Downloads/zarf # Make the binary executable

</TabItem>

<TabItem value="manually-built" label="Manually Built">
<TabItem value="Manually Built">

- While we only say `zarf` for this example command, depending on your system, you might have to use a different name for the binary like `zarf-mac-intel` or `zarf-mac-apple`.

Expand Down