Skip to content

Commit

Permalink
User guide, installation: fix markup of tabbed pane (#1107)
Browse files Browse the repository at this point in the history
  • Loading branch information
deining committed Jul 18, 2022
1 parent 6c8a3af commit 2bfdac4
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion netlify.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ publish = "userguide/public"
command = "npm run docs-install && npm run build:preview"

[build.environment]
GO_VERSION = "1.18.3"
GO_VERSION = "1.18.4"
HUGO_THEME = "repo"

[context.production]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ If the result is `v0.73` or earlier, or if you don't see `Extended`, you'll need
1. Go to the [Hugo releases](https://github.com/gohugoio/hugo/releases) page.
2. In the most recent release, scroll down until you find a list of
**Extended** versions.
3. Download the latest extended version (`hugo_extended_0.9X_Linux-64bit.tar.gz`).
3. Download the latest extended version (`hugo_extended_0.1XX_Linux-64bit.tar.gz`).
4. Create a new directory:

```bash
Expand Down Expand Up @@ -70,7 +70,7 @@ Hugo's commands for module management require that the Go programming language i

```bash
$ go version
go version go1.17.6 windows/amd64
go version go1.18.4 windows/amd64
```

Ensure that you are using version 1.12 or higher.
Expand All @@ -84,7 +84,7 @@ Hugo's commands for module management require that the `git` client is installed

```bash
git version
git version 2.35.1.windows.1
git version 2.37.1.windows.1
```

If no `git` client is installed on your system yet, go to the [Git website](https://git-scm.com/), download the installer for your system architecture and execute it. Afterwards, check for a successful installation.
Expand Down Expand Up @@ -149,7 +149,7 @@ You can check your current Node.js version by running `node -v`. If you need to
* [Enterprise Linux based distributions](https://github.com/nodesource/distributions/blob/master/README.md#installation-instructions-1)

tl;dr:

```
# As root
curl -fsSL https://rpm.nodesource.com/setup_18.x | bash -
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ module:
- path: github.com/google/docsy/dependencies
disable: false
{{< /tab >}}
{{< tab header="config.json" lang="yaml" >}}
{{< tab header="config.json" lang="json" >}}
{
"module": {
"proxy": "direct",
Expand Down
4 changes: 2 additions & 2 deletions userguide/content/en/docs/Updating/Updating-hugo-module.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ If you want to set your module to a certain version inside the docsy theme repo,
hugo mod get -u github.com/google/docsy@v0.4.0
```

Instead of a version tag, you can also specify a commit hash inside the repo (here: _c7b9901e_) when updating your theme:
Instead of a version tag, you can also specify a commit hash inside the repo (here: _6c8a3afe_) when updating your theme:


```bash
hugo mod get -u github.com/google/docsy@c7b9901e
hugo mod get -u github.com/google/docsy@6c8a3afe
```
{{% /alert %}}

0 comments on commit 2bfdac4

Please sign in to comment.