Skip to content

Commit

Permalink
Copyedits to installation-prerequisites.md (#1390)
Browse files Browse the repository at this point in the history
  • Loading branch information
chalin committed Feb 2, 2023
1 parent a780b0d commit ee99df6
Showing 1 changed file with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
---
title: "Before you begin"
linkTitle: "Before you begin"
title: Before you begin
date: 2021-12-08T11:12:59+01:00
weight: 1
description: >
Expand All @@ -13,7 +12,7 @@ This page describes the prerequisites for building a site that uses Docsy as a H

You need a [recent **extended** version](https://github.com/gohugoio/hugo/releases) (we recommend version 0.73.0 or later) of [Hugo](https://gohugo.io/) to do local builds and previews of sites (like this one) that use Docsy. If you install from the release page, make sure to get the `extended` Hugo version, which supports [SCSS](https://sass-lang.com/documentation/file.SCSS_FOR_SASS_USERS.html); you may need to scroll down the list of releases to see it.

For comprehensive Hugo documentation, see [gohugo.io](https://gohugo.io/).
For comprehensive Hugo documentation, see [gohugo.io](https://gohugo.io).

### On Linux

Expand All @@ -24,6 +23,7 @@ If you've already installed Hugo, check your version:
```bash
hugo version
```

If the result is `v0.73` or earlier, or if you don't see `Extended`, you'll need to install the latest version. You can see a complete list of Linux installation options in [Install Hugo](https://gohugo.io/getting-started/installing/#linux). The following shows you how to install Hugo from the release page:

1. Go to the [Hugo releases](https://github.com/gohugoio/hugo/releases) page.
Expand Down Expand Up @@ -68,7 +68,7 @@ See the [`hugo-bin` documentation](https://www.npmjs.com/package/hugo-bin) for u

Hugo's commands for module management require that the Go programming language is installed on your system. Check whether `go` is already installed:

```bash
```console
$ go version
go version go1.19.2 windows/amd64
```
Expand All @@ -82,9 +82,9 @@ If the `go` language is not installed on your system yet or if you need to upgra

Hugo's commands for module management require that the `git` client is installed on your system. Check whether `git` is already present in your system:

```bash
git version
git version 2.38.1.windows.1
```console
$ git version
git version 2.39.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 @@ -136,7 +136,7 @@ You can check your current Node.js version by running `node -v`. If you need to

tl;dr:

```
```bash
# Using Ubuntu
curl -fsSL https://deb.nodesource.com/setup_18.x | sudo -E bash -
sudo apt-get install -y nodejs
Expand All @@ -150,7 +150,7 @@ You can check your current Node.js version by running `node -v`. If you need to

tl;dr:

```
```bash
# As root
curl -fsSL https://rpm.nodesource.com/setup_18.x | bash -

Expand Down

0 comments on commit ee99df6

Please sign in to comment.