summaryrefslogtreecommitdiffstats
path: root/docs/content/en
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2021-05-01 11:45:45 +0200
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2021-05-01 11:45:45 +0200
commitd7b22aee463d4178c1fb4594054c9b1493b9c571 (patch)
tree789f0c13ec04cd08fc34ecac177f67ea1ccf4365 /docs/content/en
parent3cc4fdd6f358263ffde33ccbf61546f073979e32 (diff)
parentc239c643fee10bfa217cb108755b798f8f5f3b10 (diff)
Diffstat (limited to 'docs/content/en')
-rw-r--r--docs/content/en/about/benefits.md2
-rw-r--r--docs/content/en/content-management/related.md2
-rw-r--r--docs/content/en/getting-started/configuration-markup.md2
-rw-r--r--docs/content/en/hosting-and-deployment/hosting-on-netlify.md12
-rw-r--r--docs/content/en/templates/introduction.md2
5 files changed, 10 insertions, 10 deletions
diff --git a/docs/content/en/about/benefits.md b/docs/content/en/about/benefits.md
index 020e58981..d5c13a9c3 100644
--- a/docs/content/en/about/benefits.md
+++ b/docs/content/en/about/benefits.md
@@ -36,7 +36,7 @@ This has many benefits. The most noticeable is performance. HTTP servers are *ve
["An Introduction to Static Site Generators", David Walsh]: https://davidwalsh.name/introduction-static-site-generators
-["Static Site Generators", O'Reilly]: https://www.oreilly.com/web-platform/free/files/static-site-generators.pdf
+["Static Site Generators", O'Reilly]: https://github.com/gohugoio/hugoDocs/files/1242701/static-site-generators.pdf
["Top 10 Static Website Generators", Netlify blog]: https://www.netlify.com/blog/2016/05/02/top-ten-static-website-generators/
[hugovwordpress]: https://gettingthingstech.com/hugo-vs.-wordpress-page-load-speed-comparison-hugo-leaves-wordpress-in-its-dust/
[StaticGen: Top Open-Source Static Site Generators (GitHub Stars)]: https://www.staticgen.com/
diff --git a/docs/content/en/content-management/related.md b/docs/content/en/content-management/related.md
index ec3c3dd6f..c0728fe99 100644
--- a/docs/content/en/content-management/related.md
+++ b/docs/content/en/content-management/related.md
@@ -84,7 +84,7 @@ related:
weight: 10
{{< /code-toggle >}}
-Note that if you have configured `tags` as a taxonomy, `tags` will also be added to the default configuration abve with the weight of `80`.
+Note that if you have configured `tags` as a taxonomy, `tags` will also be added to the default configuration above with the weight of `80`.
Custom configuration should be set using the same syntax.
diff --git a/docs/content/en/getting-started/configuration-markup.md b/docs/content/en/getting-started/configuration-markup.md
index 14a23b734..e19bbe47f 100644
--- a/docs/content/en/getting-started/configuration-markup.md
+++ b/docs/content/en/getting-started/configuration-markup.md
@@ -43,7 +43,7 @@ typographer
attribute
: Enable custom attribute support for titles and blocks by adding attribute lists inside single curly brackets (`{.myclass class="class1 class2" }`) and placing it _after the Markdown element it decorates_, on the same line for titles and on a new line directly below for blocks.
-{{< new-in "0.81" >}} In Hugo 0.81.0 we added support for adding attributes (e.g. CSS classes) to Markdown blocks, e.g. tables, lists, paragraphs etc.
+{{< new-in "0.81.0" >}} In Hugo 0.81.0 we added support for adding attributes (e.g. CSS classes) to Markdown blocks, e.g. tables, lists, paragraphs etc.
A blockquote with a CSS class:
diff --git a/docs/content/en/hosting-and-deployment/hosting-on-netlify.md b/docs/content/en/hosting-and-deployment/hosting-on-netlify.md
index 74c54b047..9dfc010af 100644
--- a/docs/content/en/hosting-and-deployment/hosting-on-netlify.md
+++ b/docs/content/en/hosting-and-deployment/hosting-on-netlify.md
@@ -65,17 +65,17 @@ You can [set Hugo version](https://www.netlify.com/blog/2017/04/11/netlify-plus-
For production:
-{{< code-toggle file="netlify" >}}
+{{< code file="netlify.toml" codeLang="toml" >}}
[context.production.environment]
- HUGO_VERSION = "0.53"
-{{< /code-toggle >}}
+ HUGO_VERSION = "0.82.1"
+{{< /code >}}
For testing:
-```
+{{< code file="netlify.toml" codeLang="toml" >}}
[context.deploy-preview.environment]
- HUGO_VERSION = "0.53"
-```
+ HUGO_VERSION = "0.82.1"
+{{< /code >}}
The Netlify configuration file can be a little hard to understand and get right for the different environment, and you may get some inspiration and tips from this site's `netlify.toml`:
diff --git a/docs/content/en/templates/introduction.md b/docs/content/en/templates/introduction.md
index 43f88f147..17fa5475c 100644
--- a/docs/content/en/templates/introduction.md
+++ b/docs/content/en/templates/introduction.md
@@ -245,7 +245,7 @@ If the _map_, _array_, or _slice_ passed into the range is zero-length then the
### Conditionals
-`if`, `else`, `with`, `or`, and `and` provide the framework for handling conditional logic in Go Templates. Like `range`, each statement is closed with an `{{ end }}`.
+`if`, `else`, `with`, `or`, `and` and `not` provide the framework for handling conditional logic in Go Templates. Like `range`, `if` and `with` statements are closed with an `{{ end }}`.
Go Templates treat the following values as **false**: