From 2b12cc8530ec6bf273372da0ba96a4909c5ee86b Mon Sep 17 00:00:00 2001 From: Andreas Deininger Date: Sun, 17 Jul 2022 21:17:30 +0200 Subject: [PATCH] User guide, installation: fix markup of tabbed pane --- netlify.toml | 2 +- .../Docsy-As-Module/installation-prerequisites.md | 8 ++++---- .../Get started/Docsy-As-Module/start-from-scratch.md | 2 +- .../content/en/docs/Updating/Updating-hugo-module.md | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/netlify.toml b/netlify.toml index c8efe54cb5..b96121d2aa 100644 --- a/netlify.toml +++ b/netlify.toml @@ -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] diff --git a/userguide/content/en/docs/Get started/Docsy-As-Module/installation-prerequisites.md b/userguide/content/en/docs/Get started/Docsy-As-Module/installation-prerequisites.md index 2fb30fc86a..5f52a35a88 100644 --- a/userguide/content/en/docs/Get started/Docsy-As-Module/installation-prerequisites.md +++ b/userguide/content/en/docs/Get started/Docsy-As-Module/installation-prerequisites.md @@ -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 @@ -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. @@ -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. @@ -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 - diff --git a/userguide/content/en/docs/Get started/Docsy-As-Module/start-from-scratch.md b/userguide/content/en/docs/Get started/Docsy-As-Module/start-from-scratch.md index 6806dcd017..c89985f875 100644 --- a/userguide/content/en/docs/Get started/Docsy-As-Module/start-from-scratch.md +++ b/userguide/content/en/docs/Get started/Docsy-As-Module/start-from-scratch.md @@ -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", diff --git a/userguide/content/en/docs/Updating/Updating-hugo-module.md b/userguide/content/en/docs/Updating/Updating-hugo-module.md index c3f40477e3..bbe864a29c 100644 --- a/userguide/content/en/docs/Updating/Updating-hugo-module.md +++ b/userguide/content/en/docs/Updating/Updating-hugo-module.md @@ -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 %}}