summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2023-10-27 10:06:44 +0200
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2023-10-27 10:06:44 +0200
commit705e3cd5f558fb506f25c4255968bfdc907adb29 (patch)
treeb616ce84ecce4e3b5d2f7f3d94550eacd0e51008 /docs
parent8c61fd25419b8716807a52dbc64d4b4e57d31356 (diff)
parent3710a5ec7efe6baca6e452f43632c05d22bab3c4 (diff)
Diffstat (limited to 'docs')
-rw-r--r--docs/config/_default/params.toml3
-rw-r--r--docs/content/en/getting-started/glossary.md4
-rw-r--r--docs/content/en/templates/internal.md2
-rw-r--r--docs/content/en/templates/introduction.md3
-rw-r--r--docs/content/en/templates/lists/index.md2
-rw-r--r--docs/hugo.toml3
6 files changed, 15 insertions, 2 deletions
diff --git a/docs/config/_default/params.toml b/docs/config/_default/params.toml
index 7103394a6..3fddf9dbc 100644
--- a/docs/config/_default/params.toml
+++ b/docs/config/_default/params.toml
@@ -19,3 +19,6 @@ images = ["images/gohugoio-card.png"]
flex_box_interior_classes = "flex-auto w-100 w-40-l mr3 mb3 bg-white ba b--moon-gray nested-copy-line-height"
#sidebar_direction = "sidebar_left"
+
+[social]
+twitter = "GoHugoIO"
diff --git a/docs/content/en/getting-started/glossary.md b/docs/content/en/getting-started/glossary.md
index c15af5170..759cb1cd1 100644
--- a/docs/content/en/getting-started/glossary.md
+++ b/docs/content/en/getting-started/glossary.md
@@ -92,6 +92,10 @@ Used within a [template action](#template-action), a function takes one or more
Metadata at the beginning of each content page, separated from the content by format-specific delimiters. See&nbsp;[details](/content-management/front-matter/).
+### identifier
+
+A string that represents a variable, method, object, or field. It must conform to Go's [language specification](https://go.dev/ref/spec#Identifiers), beginning with a letter or underscore, followed by zero or more letters, digits, or underscores.
+
### int
See [integer](#integer).
diff --git a/docs/content/en/templates/internal.md b/docs/content/en/templates/internal.md
index 9118184e8..a73ecde4c 100644
--- a/docs/content/en/templates/internal.md
+++ b/docs/content/en/templates/internal.md
@@ -165,7 +165,7 @@ To add Open Graph metadata, include the following line between the `<head>` tags
## Twitter Cards
-An internal template for [Twitter Cards](https://developer.twitter.com/en/docs/tweets/optimize-with-cards/overview/abouts-cards),
+An internal template for [Twitter Cards](https://developer.twitter.com/en/docs/twitter-for-websites/cards/overview/abouts-cards),
metadata used to attach rich media to Tweets linking to your site.
### Configure Twitter Cards
diff --git a/docs/content/en/templates/introduction.md b/docs/content/en/templates/introduction.md
index 93666de28..2eb436f82 100644
--- a/docs/content/en/templates/introduction.md
+++ b/docs/content/en/templates/introduction.md
@@ -114,6 +114,8 @@ all other pages:
Var is {{ $var }}
```
+Variable names must conform to Go's naming rules for [identifiers][identifier].
+
## Functions
Go Templates only ship with a few basic functions but also provide a mechanism for applications to extend the original set.
@@ -660,6 +662,7 @@ If you restrict front matter to the TOML format, and omit quotation marks surrou
[dotdoc]: https://golang.org/pkg/text/template/#hdr-Variables
[front matter]: /content-management/front-matter
[functions]: /functions
+[identifier]: /getting-started/glossary/#identifier
[internal templates]: /templates/internal
[math]: /functions/math
[pagevars]: /variables/page
diff --git a/docs/content/en/templates/lists/index.md b/docs/content/en/templates/lists/index.md
index e586460db..b48969e96 100644
--- a/docs/content/en/templates/lists/index.md
+++ b/docs/content/en/templates/lists/index.md
@@ -592,6 +592,6 @@ See the documentation on [`where`] and
[taxvars]: /variables/taxonomy/
[views]: /templates/views/
[`where`]: /functions/collections/where
-[`first]: /functions/first/
+[`first`]: /functions/first/
[main sections]: /functions/collections/where#mainsections
[`time.Format`]: /functions/time/format
diff --git a/docs/hugo.toml b/docs/hugo.toml
index 46486aec9..3126027a9 100644
--- a/docs/hugo.toml
+++ b/docs/hugo.toml
@@ -86,6 +86,9 @@ ID = 'G-MBZGKNMDWC'
weight = 60
cardinalityThreshold = 50
+# TODO delete when (a) Netlify is building the site with v0.120.0 or later,
+# and (b) the changes fom gohugoioTheme/commit/af97b8e61638ddf043b87590cd567d76045bf9be
+# have been pulled into this repo.
[social]
twitter = "GoHugoIO"