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

User guide, installation: fix markup of tabbed pane #1107

Merged
merged 1 commit into from
Jul 18, 2022
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
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/[email protected]
```

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 %}}