Merge commit 'd3927310d5b2404c3238f9b899db3329ea516490'

This commit is contained in:
Bjørn Erik Pedersen
2023-05-27 17:02:23 +02:00
75 changed files with 214 additions and 167 deletions

View File

@@ -23,7 +23,7 @@ In this tutorial you will:
Before you begin this tutorial you must:
1. [Install Hugo] (the extended edition)
1. [Install Hugo] (extended edition, v0.112.0 or later)
1. [Install Git]
You must also be comfortable working from the command line.
@@ -51,7 +51,7 @@ hugo new site quickstart
cd quickstart
git init
git submodule add https://github.com/theNewDynamic/gohugo-theme-ananke themes/ananke
echo "theme = 'ananke'" >> config.toml
echo "theme = 'ananke'" >> hugo.toml
hugo server
```
@@ -86,7 +86,7 @@ git submodule add https://github.com/theNewDynamic/gohugo-theme-ananke themes/an
Append a line to the site configuration file, indicating the current theme.
```text
echo "theme = 'ananke'" >> config.toml
echo "theme = 'ananke'" >> hugo.toml
```
Start Hugo's development server to view the site.
@@ -152,7 +152,7 @@ Hugo's rendering engine conforms to the CommonMark [specification] for markdown.
## Configure the site
With your editor, open the [site configuration] file (`config.toml`) in the root of your project.
With your editor, open the [site configuration] file (`hugo.toml`) in the root of your project.
```text
baseURL = 'http://example.org/'