commit 4b36498a852edc4e4c269ba50855bad7bea0c4bb
parent 3a977485eb7d5f913da5cc10ef58715ffd273613
Author: Bjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Date: Sun, 31 Oct 2021 13:53:55 +0100
Merge commit 'aa5ac36a3eb68b86c803caec703869efefc8447e'
Diffstat:
162 files changed, 81 insertions(+), 645 deletions(-)
diff --git a/docs/.gitignore b/docs/.gitignore
@@ -3,4 +3,5 @@
node_modules
nohup.out
.DS_Store
-trace.out-
\ No newline at end of file
+trace.out
+.hugo_build.lock
diff --git a/docs/archetypes/default.md b/docs/archetypes/default.md
@@ -1,7 +1,6 @@
---
linktitle: ""
description: ""
-godocref: ""
publishdate: ""
lastmod: ""
categories: []
@@ -10,4 +9,4 @@ weight: 00
slug: ""
aliases: []
toc: false
-----
\ No newline at end of file
+---
diff --git a/docs/archetypes/functions.md b/docs/archetypes/functions.md
@@ -1,7 +1,6 @@
---
linktitle: ""
description: ""
-godocref: ""
publishdate: ""
lastmod: ""
categories: [functions]
@@ -14,4 +13,4 @@ aliases: []
relatedfuncs: []
toc: false
deprecated: false
-----
\ No newline at end of file
+---
diff --git a/docs/content/en/content-management/comments.md b/docs/content/en/content-management/comments.md
@@ -47,29 +47,27 @@ Disqus has its own [internal template](https://gohugo.io/templates/internal/#dis
{{ template "_internal/disqus.html" . }}
```
-## Comments Alternatives
+## Alternatives
-There are a few alternatives to commenting on static sites for those who do not want to use Disqus:
+These are some alternatives to Disqus:
-* [Staticman](https://staticman.net/)
-* [Talkyard](https://www.talkyard.io/blog-comments) (Open source, & serverless hosting)
+* [Cactus Comments](https://cactus.chat/docs/integrations/hugo/) (Open Source, Matrix appservice, Docker install)
+* [Commento](https://commento.io/) (Open Source, available as a service, local install, or docker image)
+* [Graph Comment](https://graphcomment.com/)
+* [Hyvor Talk](https://talk.hyvor.com/) (Available as a service)
* [IntenseDebate](https://intensedebate.com/)
-* [Graph Comment][]
+* [Isso](https://posativ.org/isso/) (Self-hosted, Python) ([tutorial][issotutorial])
* [Muut](https://muut.com/)
-* [Isso](https://posativ.org/isso/) (Self-hosted, Python)
- * [Tutorial on Implementing Isso with Hugo][issotutorial]
+* [Remark42](https://remark42.com/) (Open source, Golang, Easy to run docker)
+* [Staticman](https://staticman.net/)
+* [Talkyard](https://www.talkyard.io/blog-comments) (Open source, & serverless hosting)
* [Utterances](https://utteranc.es/) (Open source, GitHub comments widget built on GitHub issues)
-* [Remark](https://github.com/umputun/remark) (Open source, Golang, Easy to run docker)
-* [Commento](https://commento.io/) (Open Source, available as a service, local install, or docker image)
-* [Hyvor Talk](https://talk.hyvor.com/) (Available as a service)
-
[configuration]: /getting-started/configuration/
[disquspartial]: /templates/partials/#disqus
[disqussetup]: https://disqus.com/profile/signup/
[forum]: https://discourse.gohugo.io
[front matter]: /content-management/front-matter/
-[Graph Comment]: https://graphcomment.com/
[kaijuissue]: https://github.com/spf13/kaiju/issues/new
[issotutorial]: https://stiobhart.net/2017-02-24-isso-comments/
[partials]: /templates/partials/
diff --git a/docs/content/en/content-management/front-matter.md b/docs/content/en/content-management/front-matter.md
@@ -185,7 +185,7 @@ path
: A [Glob](https://github.com/gobwas/glob) pattern matching the content path below /content. Expects Unix-styled slashes. Note that this is the virtual path, so it starts at the mount root. The matching support double-asterisks so you can match for patterns like `/blog/*/**` to match anything from the third level and down.
kind
-: A Glob pattern matching the Page's Kind(s), e.g. "{home,section}".
+: The Page's Kind, e.g. "section".
lang
: A Glob pattern matching the Page's language, e.g. "{en,sv}".
diff --git a/docs/content/en/content-management/shortcodes.md b/docs/content/en/content-management/shortcodes.md
@@ -2,7 +2,6 @@
title: Shortcodes
linktitle:
description: Shortcodes are simple snippets inside your content files calling built-in or custom templates.
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2019-11-07
diff --git a/docs/content/en/contribute/development.md b/docs/content/en/contribute/development.md
@@ -336,7 +336,7 @@ pick 33c8973 Begin workflow
pick 3502f2e Refactoring and typo fixes
```
-In the case above we should merge the last to commits in the commit of this tutorial (`Add "How to contribute to Hugo" tutorial`). You can "squash" commits, i.e. merge two or more commits into a single one.
+In the case above we should merge the last two commits in the commit of this tutorial (`Add "How to contribute to Hugo" tutorial`). You can "squash" commits, i.e. merge two or more commits into a single one.
All operations are written before the commit message. Replace "pick" with an operation. In this case `squash` or `s` for short:
diff --git a/docs/content/en/functions/GetPage.md b/docs/content/en/functions/GetPage.md
@@ -1,7 +1,6 @@
---
title: .GetPage
description: "Gets a `Page` of a given `path`."
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
diff --git a/docs/content/en/functions/RenderString.md b/docs/content/en/functions/RenderString.md
@@ -1,7 +1,6 @@
---
title: .RenderString
description: "Renders markup to HTML."
-godocref:
date: 2019-12-18
categories: [functions]
menu:
diff --git a/docs/content/en/functions/_index.md b/docs/content/en/functions/_index.md
@@ -2,7 +2,6 @@
title: Functions Quick Reference
linktitle: Functions Quick Reference
description: Comprehensive list of Hugo templating functions, including basic and advanced usage examples.
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
diff --git a/docs/content/en/functions/abslangurl.md b/docs/content/en/functions/abslangurl.md
@@ -1,7 +1,6 @@
---
title: absLangURL
description: Adds the absolute URL with correct language prefix according to site configuration for multilingual.
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
diff --git a/docs/content/en/functions/absurl.md b/docs/content/en/functions/absurl.md
@@ -1,7 +1,6 @@
---
title: absURL
description: Creates an absolute URL based on the configured baseURL.
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
diff --git a/docs/content/en/functions/adddate.md b/docs/content/en/functions/adddate.md
@@ -1,7 +1,6 @@
---
title: .AddDate
description: Returns the time corresponding to adding the given number of years, months, and days passed to the function.
-godocref: https://golang.org/pkg/time/#Time.AddDate
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
diff --git a/docs/content/en/functions/after.md b/docs/content/en/functions/after.md
@@ -1,7 +1,6 @@
---
title: after
description: "`after` slices an array to only the items after the <em>N</em>th item."
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
diff --git a/docs/content/en/functions/apply.md b/docs/content/en/functions/apply.md
@@ -1,7 +1,6 @@
---
title: apply
description: Given a map, array, or slice, `apply` returns a new slice with a function applied over it.
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
diff --git a/docs/content/en/functions/base64.md b/docs/content/en/functions/base64.md
@@ -1,7 +1,6 @@
---
title: base64
description: "`base64Encode` and `base64Decode` let you easily decode content with a base64 encoding and vice versa through pipes."
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
diff --git a/docs/content/en/functions/chomp.md b/docs/content/en/functions/chomp.md
@@ -1,7 +1,7 @@
---
title: chomp
+toc: true
description: Removes any trailing newline characters.
-godocref: Removes any trailing newline characters.
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
diff --git a/docs/content/en/functions/countrunes.md b/docs/content/en/functions/countrunes.md
@@ -1,7 +1,6 @@
---
title: countrunes
description: Determines the number of runes in a string excluding any whitespace.
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
diff --git a/docs/content/en/functions/countwords.md b/docs/content/en/functions/countwords.md
@@ -1,7 +1,6 @@
---
title: countwords
description: Counts the number of words in a string.
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
diff --git a/docs/content/en/functions/dateformat.md b/docs/content/en/functions/dateformat.md
@@ -1,7 +1,6 @@
---
title: time.Format
description: Converts a date/time to a localized string.
-godocref: https://golang.org/pkg/time/
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
@@ -23,7 +22,7 @@ deprecated: false
{{ time.Format "Monday, Jan 2, 2006" "2015-01-21" }} → "Wednesday, Jan 21, 2015"
```
-Note that since Hugo 0.87.0, `time.Format` will return a localized string for the currrent language. {{< new-in "0.87.0" >}}
+Note that since Hugo 0.87.0, `time.Format` will return a localized string for the current language. {{< new-in "0.87.0" >}}
The `LAYOUT` string can be either:
@@ -37,7 +36,7 @@ See the [`time` function](/functions/time/) to convert a timestamp string to a G
{{< new-in "0.87.0" >}}
-Go's date layout strings can be hard to reason about, especially with multiple languages. Since Hugo 0.87.0 you can alternatively use some predefined layout idenfifiers that will output localized dates or times:
+Go's date layout strings can be hard to reason about, especially with multiple languages. Since Hugo 0.87.0 you can alternatively use some predefined layout identifiers that will output localized dates or times:
```go-html-template
{{ .Date | time.Format ":date_long" }}
diff --git a/docs/content/en/functions/default.md b/docs/content/en/functions/default.md
@@ -2,7 +2,6 @@
title: default
description: Allows setting a default value that can be returned if a first value is not set.
qref: "Returns a default value if a value is not set when checked."
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
diff --git a/docs/content/en/functions/delimit.md b/docs/content/en/functions/delimit.md
@@ -1,7 +1,6 @@
---
title: delimit
description: Loops through any array, slice, or map and returns a string of all the values separated by a delimiter.
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
diff --git a/docs/content/en/functions/dict.md b/docs/content/en/functions/dict.md
@@ -1,7 +1,6 @@
---
title: dict
description: Creates a dictionary from a list of key and value pairs.
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-26
diff --git a/docs/content/en/functions/echoparam.md b/docs/content/en/functions/echoparam.md
@@ -1,7 +1,6 @@
---
title: echoParam
description: Prints a parameter if it is set.
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
diff --git a/docs/content/en/functions/emojify.md b/docs/content/en/functions/emojify.md
@@ -1,7 +1,6 @@
---
title: emojify
description: Runs a string through the Emoji emoticons processor.
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
diff --git a/docs/content/en/functions/eq.md b/docs/content/en/functions/eq.md
@@ -2,7 +2,6 @@
title: eq
linktitle: eq
description: Returns the boolean truth of arg1 == arg2.
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
diff --git a/docs/content/en/functions/fileExists.md b/docs/content/en/functions/fileExists.md
@@ -3,7 +3,6 @@ title: "fileExists"
linktitle: "fileExists"
date: 2017-08-31T22:38:22+02:00
description: Checks whether a file exists under the given path.
-godocref:
publishdate: 2017-08-31T22:38:22+02:00
lastmod: 2017-08-31T22:38:22+02:00
categories: [functions]
@@ -26,4 +25,4 @@ aliases: []
{{- end }}
```
-In the example above, a banner from the `static` folder should be shown if the given path points to an existing file.-
\ No newline at end of file
+In the example above, a banner from the `static` folder should be shown if the given path points to an existing file.
diff --git a/docs/content/en/functions/findRe.md b/docs/content/en/functions/findRe.md
@@ -1,7 +1,6 @@
---
title: findRE
description: Returns a list of strings that match the regular expression.
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
diff --git a/docs/content/en/functions/first.md b/docs/content/en/functions/first.md
@@ -2,7 +2,6 @@
title: first
linktitle: first
description: "Slices an array to only the first _N_ elements."
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
diff --git a/docs/content/en/functions/float.md b/docs/content/en/functions/float.md
@@ -2,7 +2,6 @@
title: float
linktitle: float
description: Creates a `float` from the argument passed into the function.
-godocref:
date: 2017-09-28
publishdate: 2017-09-28
lastmod: 2017-09-28
diff --git a/docs/content/en/functions/format.md b/docs/content/en/functions/format.md
@@ -1,7 +1,6 @@
---
title: .Format
description: Formats built-in Hugo dates---`.Date`, `.PublishDate`, and `.Lastmod`---according to Go's layout string.
-godocref: https://golang.org/pkg/time/#example_Time_Format
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
diff --git a/docs/content/en/functions/ge.md b/docs/content/en/functions/ge.md
@@ -2,7 +2,6 @@
title: ge
linktitle: ge
description: Returns the boolean truth of arg1 >= arg2.
-godocref:
date: 2017-07-26
publishdate: 2017-07-26
lastmod: 2017-07-26
diff --git a/docs/content/en/functions/get.md b/docs/content/en/functions/get.md
@@ -1,7 +1,6 @@
---
title: .Get
description: Accesses positional and ordered parameters in shortcode declaration.
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
@@ -29,7 +28,3 @@ When accessing a named parameter that does not exist, `.Get` returns an empty st
```
[sc]: /templates/shortcode-templates/
-
-
-
-
diff --git a/docs/content/en/functions/getenv.md b/docs/content/en/functions/getenv.md
@@ -1,7 +1,6 @@
---
title: getenv
description: Returns the value of an environment variable.
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
diff --git a/docs/content/en/functions/gt.md b/docs/content/en/functions/gt.md
@@ -2,7 +2,6 @@
title: gt
linktitle: gt
description: Returns the boolean truth of arg1 > arg2.
-godocref:
date: 2017-07-26
publishdate: 2017-07-26
lastmod: 2017-07-26
diff --git a/docs/content/en/functions/hasPrefix.md b/docs/content/en/functions/hasPrefix.md
@@ -2,7 +2,6 @@
title: hasprefix
linktitle: hasPrefix
description: Tests whether a string begins with prefix.
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
diff --git a/docs/content/en/functions/haschildren.md b/docs/content/en/functions/haschildren.md
@@ -1,7 +1,6 @@
---
title: .HasChildren
description:
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
diff --git a/docs/content/en/functions/hasmenucurrent.md b/docs/content/en/functions/hasmenucurrent.md
@@ -1,7 +1,6 @@
---
title: .HasMenuCurrent
description:
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
diff --git a/docs/content/en/functions/highlight.md b/docs/content/en/functions/highlight.md
@@ -2,7 +2,6 @@
title: highlight
linktitle: highlight
description: Takes a string of code and language declaration and uses Chroma to return syntax-highlighted HTML.
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
diff --git a/docs/content/en/functions/hmac.md b/docs/content/en/functions/hmac.md
@@ -2,7 +2,6 @@
title: hmac
linktitle: hmac
description: Compute the cryptographic checksum of a message.
-godocref:
date: 2020-05-29
publishdate: 2020-05-29
lastmod: 2020-05-29
diff --git a/docs/content/en/functions/htmlEscape.md b/docs/content/en/functions/htmlEscape.md
@@ -2,7 +2,6 @@
title: htmlEscape
linktitle:
description: Returns the given string with the reserved HTML codes escaped.
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
diff --git a/docs/content/en/functions/htmlUnescape.md b/docs/content/en/functions/htmlUnescape.md
@@ -2,7 +2,6 @@
title: htmlUnescape
linktitle: htmlUnescape
description: Returns the given string with HTML escape codes un-escaped.
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
diff --git a/docs/content/en/functions/hugo.md b/docs/content/en/functions/hugo.md
@@ -2,7 +2,6 @@
title: hugo
linktitle: hugo
description: The `hugo` function provides easy access to Hugo-related data.
-godocref:
date: 2019-01-31
publishdate: 2019-01-31
lastmod: 2019-01-31
@@ -50,4 +49,3 @@ hugo.IsProduction
{{% note "Use the Hugo Generator Tag" %}}
We highly recommend using `hugo.Generator` in your website's `<head>`. `hugo.Generator` is included by default in all themes hosted on [themes.gohugo.io](https://themes.gohugo.io). The generator tag allows the Hugo team to track the usage and popularity of Hugo.
{{% /note %}}
-
diff --git a/docs/content/en/functions/humanize.md b/docs/content/en/functions/humanize.md
@@ -2,7 +2,6 @@
title: humanize
linktitle:
description: Returns the humanized version of an argument with the first letter capitalized.
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
diff --git a/docs/content/en/functions/i18n.md b/docs/content/en/functions/i18n.md
@@ -2,7 +2,6 @@
title: i18n
linktitle: i18n
description: Translates a piece of content based on your i18n configuration files.
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
diff --git a/docs/content/en/functions/images/index.md b/docs/content/en/functions/images/index.md
@@ -1,7 +1,6 @@
---
title: Image Functions
description: The images namespace provides a list of filters and other image related functions.
-godocref:
date: 2017-02-01
categories: [functions]
aliases: [/functions/imageconfig/]
diff --git a/docs/content/en/functions/in.md b/docs/content/en/functions/in.md
@@ -2,7 +2,6 @@
title: in
linktitle:
description: Checks if an element is in an array or slice--or a substring in a string---and returns a boolean.
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
diff --git a/docs/content/en/functions/index-function.md b/docs/content/en/functions/index-function.md
@@ -2,7 +2,6 @@
title: index
linktitle: index
description: Looks up the index(es) or key(s) of the data structure passed into it.
-godocref: https://golang.org/pkg/text/template/#hdr-Functions
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
@@ -38,6 +37,14 @@ The function takes multiple indices as arguments, and this can be used to get ne
{{ index $map "c" "e" }} => 20
```
+You may write multiple indices as a slice:
+
+```go-text-template
+{{ $map := dict "a" 100 "b" 200 "c" (dict "d" 10 "e" 20) }}
+{{ $slice := slice "c" "e" }}
+{{ index $map $slice }} => 20
+```
+
## Example: Load Data from a Path Based on Front Matter Params
Assume you want to add a `location = ""` field to your front matter for every article written in `content/vacations/`. You want to use this field to populate information about the location at the bottom of the article in your `single.html` template. You also have a directory in `data/locations/` that looks like the following:
diff --git a/docs/content/en/functions/int.md b/docs/content/en/functions/int.md
@@ -2,7 +2,6 @@
title: int
linktitle: int
description: Creates an `int` from the argument passed into the function.
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
diff --git a/docs/content/en/functions/intersect.md b/docs/content/en/functions/intersect.md
@@ -2,7 +2,6 @@
title: intersect
linktitle: intersect
description: Returns the common elements of two arrays or slices, in the same order as the first array.
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
diff --git a/docs/content/en/functions/ismenucurrent.md b/docs/content/en/functions/ismenucurrent.md
@@ -1,7 +1,6 @@
---
title: .IsMenuCurrent
description:
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
diff --git a/docs/content/en/functions/isset.md b/docs/content/en/functions/isset.md
@@ -2,7 +2,6 @@
title: isset
linktitle: isset
description: Returns true if the parameter is set.
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
@@ -29,4 +28,3 @@ Takes either a slice, array, or channel and an index or a map and a key as input
All site-level configuration keys are stored as lower case. Therefore, a `myParam` key-value set in your [site configuration file](/getting-started/configuration/) needs to be accessed with `{{if isset .Site.Params "myparam"}}` and *not* with `{{if isset .Site.Params "myParam"}}`. Note that you can still access the same config key with `.Site.Params.myParam` *or* `.Site.Params.myparam`, for example, when using [`with`](/functions/with).
This restriction also applies when accessing page-level front matter keys from within [shortcodes](/content-management/shortcodes/).
{{% /warning %}}
-
diff --git a/docs/content/en/functions/jsonify.md b/docs/content/en/functions/jsonify.md
@@ -2,7 +2,6 @@
title: jsonify
linktitle: jsonify
description: Encodes a given object to JSON.
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2020-04-13
diff --git a/docs/content/en/functions/lang.Merge.md b/docs/content/en/functions/lang.Merge.md
@@ -1,7 +1,6 @@
---
title: lang.Merge
description: "Merge missing translations from other languages."
-godocref: ""
date: 2018-03-16
categories: [functions]
keywords: [multilingual]
diff --git a/docs/content/en/functions/last.md b/docs/content/en/functions/last.md
@@ -2,7 +2,6 @@
title: last
linktitle: last
description: "slices an array to only the last <em>N</em>th elements."
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
diff --git a/docs/content/en/functions/le.md b/docs/content/en/functions/le.md
@@ -2,7 +2,6 @@
title: le
linktitle: le
description: Returns the boolean truth of arg1 <= arg2.
-godocref:
date: 2017-07-26
publishdate: 2017-07-26
lastmod: 2017-07-26
diff --git a/docs/content/en/functions/len.md b/docs/content/en/functions/len.md
@@ -2,7 +2,6 @@
title: len
linktitle: len
description: Returns the length of a variable according to its type.
-godocref: https://golang.org/pkg/builtin/#len
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-04-18
diff --git a/docs/content/en/functions/lower.md b/docs/content/en/functions/lower.md
@@ -2,7 +2,6 @@
title: lower
linktitle: lower
description: Converts all characters in the provided string to lowercase.
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
diff --git a/docs/content/en/functions/lt.md b/docs/content/en/functions/lt.md
@@ -2,7 +2,6 @@
title: lt
linktitle: lt
description: Returns the boolean truth of arg1 < arg2.
-godocref:
date: 2017-07-26
publishdate: 2017-07-26
lastmod: 2017-07-26
diff --git a/docs/content/en/functions/markdownify.md b/docs/content/en/functions/markdownify.md
@@ -2,7 +2,6 @@
title: markdownify
linktitle: markdownify
description: Runs the provided string through the Markdown processor.
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
@@ -27,4 +26,4 @@ aliases: []
*Note*: if you need [Render Hooks][], which `markdownify` doesn't currently
support, use [.RenderString](/functions/renderstring/) instead.
-[Render Hooks]: /getting-started/configuration-markup/#markdown-render-hooks-
\ No newline at end of file
+[Render Hooks]: /getting-started/configuration-markup/#markdown-render-hooks
diff --git a/docs/content/en/functions/math.md b/docs/content/en/functions/math.md
@@ -1,7 +1,6 @@
---
title: Math
description: Hugo provides mathematical operators in templates.
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2020-02-23
diff --git a/docs/content/en/functions/md5.md b/docs/content/en/functions/md5.md
@@ -2,7 +2,6 @@
title: md5
linktitle: md5
description: hashes the given input and returns its MD5 checksum.
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
diff --git a/docs/content/en/functions/ne.md b/docs/content/en/functions/ne.md
@@ -2,7 +2,6 @@
title: ne
linktitle: ne
description: Returns the boolean truth of arg1 != arg2.
-godocref:
date: 2017-07-26
publishdate: 2017-07-26
lastmod: 2017-07-26
diff --git a/docs/content/en/functions/now.md b/docs/content/en/functions/now.md
@@ -2,7 +2,6 @@
title: now
linktitle: now
description: Returns the current local time
-godocref: https://godoc.org/time#Time
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-04-30
diff --git a/docs/content/en/functions/os.Stat.md b/docs/content/en/functions/os.Stat.md
@@ -1,7 +1,6 @@
---
title: os.Stat
description: Gets a file information of a given path.
-godocref:
date: 2018-08-07
publishdate: 2018-08-07
lastmod: 2018-08-07
diff --git a/docs/content/en/functions/param.md b/docs/content/en/functions/param.md
@@ -1,7 +1,6 @@
---
title: .Param
description: Calls page or site variables into your template.
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-04-30
diff --git a/docs/content/en/functions/partialCached.md b/docs/content/en/functions/partialCached.md
@@ -2,7 +2,6 @@
title: partialCached
linktitle: partialCached
description: Allows for caching of partials that do not need to be re-rendered on every invocation.
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
diff --git a/docs/content/en/functions/path.Base.md b/docs/content/en/functions/path.Base.md
@@ -1,7 +1,6 @@
---
title: path.Base
description: Base returns the last element of a path.
-godocref:
date: 2018-11-28
publishdate: 2018-11-28
lastmod: 2018-11-28
diff --git a/docs/content/en/functions/path.Dir.md b/docs/content/en/functions/path.Dir.md
@@ -1,7 +1,6 @@
---
title: path.Dir
description: Dir returns all but the last element of a path.
-godocref:
date: 2018-11-28
publishdate: 2018-11-28
lastmod: 2018-11-28
diff --git a/docs/content/en/functions/path.Ext.md b/docs/content/en/functions/path.Ext.md
@@ -1,7 +1,6 @@
---
title: path.Ext
description: Ext returns the file name extension of a path.
-godocref:
date: 2018-11-28
publishdate: 2018-11-28
lastmod: 2018-11-28
diff --git a/docs/content/en/functions/path.Join.md b/docs/content/en/functions/path.Join.md
@@ -1,7 +1,6 @@
---
title: path.Join
description: Join path elements into a single path.
-godocref:
date: 2018-11-28
publishdate: 2018-11-28
lastmod: 2018-11-28
diff --git a/docs/content/en/functions/path.Split.md b/docs/content/en/functions/path.Split.md
@@ -1,7 +1,6 @@
---
title: path.Split
description: Split path immediately following the final slash.
-godocref:
date: 2018-11-28
publishdate: 2018-11-28
lastmod: 2018-11-28
diff --git a/docs/content/en/functions/plainify.md b/docs/content/en/functions/plainify.md
@@ -2,7 +2,6 @@
title: plainify
linktitle: plainify
description: Strips any HTML and returns the plain text version of the provided string.
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-04-30
diff --git a/docs/content/en/functions/pluralize.md b/docs/content/en/functions/pluralize.md
@@ -2,7 +2,6 @@
title: pluralize
linktitle: pluralize
description: Pluralizes the given word according to a set of common English pluralization rules
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
@@ -22,4 +21,3 @@ aliases: []
```
{{ "cat" | pluralize }} → "cats"
```
-
diff --git a/docs/content/en/functions/print.md b/docs/content/en/functions/print.md
@@ -2,7 +2,6 @@
title: print
linktitle: print
description: Prints the default representation of the given arguments using the standard `fmt.Print` function.
-godocref: https://golang.org/pkg/fmt/
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
diff --git a/docs/content/en/functions/printf.md b/docs/content/en/functions/printf.md
@@ -2,7 +2,6 @@
title: printf
linktitle: printf
description: Formats a string using the standard `fmt.Sprintf` function.
-godocref: https://golang.org/pkg/fmt/
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
diff --git a/docs/content/en/functions/println.md b/docs/content/en/functions/println.md
@@ -2,7 +2,6 @@
title: println
linktitle: println
description: Prints the default representation of the given argument using the standard `fmt.Print` function and enforces a linebreak.
-godocref: https://golang.org/pkg/fmt/
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
diff --git a/docs/content/en/functions/querify.md b/docs/content/en/functions/querify.md
@@ -10,7 +10,6 @@ menu:
docs:
parent: "functions"
keywords: [urls]
-godocref:
signature: ["querify KEY VALUE [KEY VALUE]...", "querify COLLECTION"]
hugoversion:
deprecated: false
diff --git a/docs/content/en/functions/range.md b/docs/content/en/functions/range.md
@@ -2,7 +2,6 @@
title: range
linktitle:
description: Iterates over a map, array, or slice.
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
diff --git a/docs/content/en/functions/readdir.md b/docs/content/en/functions/readdir.md
@@ -1,7 +1,6 @@
---
title: readDir
description: Gets a directory listing from a directory relative to the current working directory.
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
@@ -27,4 +26,3 @@ If your current project working directory has a single file named `README.txt`:
For more information on using `readDir` and `readFile` in your templates, see [Local File Templates][local].
[local]: /templates/files/
-
diff --git a/docs/content/en/functions/readfile.md b/docs/content/en/functions/readfile.md
@@ -1,7 +1,6 @@
---
title: readFile
description: Reads a file from disk relative to the current project working directory and returns a string.
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-04-30
diff --git a/docs/content/en/functions/ref.md b/docs/content/en/functions/ref.md
@@ -2,7 +2,6 @@
title: ref
linktitle: ref
description: Returns the absolute permalink to a page.
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2020-09-05
diff --git a/docs/content/en/functions/reflect.IsMap.md b/docs/content/en/functions/reflect.IsMap.md
@@ -1,7 +1,6 @@
---
title: reflect.IsMap
description: Reports if a value is a map.
-godocref:
date: 2018-11-28
publishdate: 2018-11-28
lastmod: 2018-11-28
diff --git a/docs/content/en/functions/reflect.IsSlice.md b/docs/content/en/functions/reflect.IsSlice.md
@@ -1,7 +1,6 @@
---
title: reflect.IsSlice
description: Reports if a value is a slice.
-godocref:
date: 2018-11-28
publishdate: 2018-11-28
lastmod: 2018-11-28
diff --git a/docs/content/en/functions/relLangURL.md b/docs/content/en/functions/relLangURL.md
@@ -1,7 +1,6 @@
---
title: relLangURL
description: Adds the relative URL with correct language prefix according to site configuration for multilingual.
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
diff --git a/docs/content/en/functions/relref.md b/docs/content/en/functions/relref.md
@@ -2,7 +2,6 @@
title: relref
linktitle: relref
description: Returns the relative permalink to a page.
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2020-09-05
diff --git a/docs/content/en/functions/relurl.md b/docs/content/en/functions/relurl.md
@@ -1,7 +1,6 @@
---
title: relURL
description: Creates a baseURL-relative URL.
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
diff --git a/docs/content/en/functions/render.md b/docs/content/en/functions/render.md
@@ -1,7 +1,6 @@
---
title: .Render
description: Takes a view to apply when rendering content.
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
diff --git a/docs/content/en/functions/replace.md b/docs/content/en/functions/replace.md
@@ -1,7 +1,6 @@
---
title: replace
description: Replaces all occurrences of the search string with the replacement string.
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2020-09-07
@@ -27,4 +26,3 @@ The number of replacements can be limited with an optional `LIMIT` parameter.
{{ replace "aabbaabb" "a" "z" 2 }} → "zzbbaabb"
```
-
diff --git a/docs/content/en/functions/replacere.md b/docs/content/en/functions/replacere.md
@@ -1,7 +1,6 @@
---
title: replaceRE
description: Replaces all occurrences of a regular expression with the replacement pattern.
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2020-09-07
diff --git a/docs/content/en/functions/safeCSS.md b/docs/content/en/functions/safeCSS.md
@@ -1,7 +1,6 @@
---
title: safeCSS
description: Declares the provided string as a known "safe" CSS string.
-godocref: https://golang.org/src/html/template/content.go?s=919:929#L15
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-26
@@ -33,4 +32,3 @@ Example: Given `style = "color: red;"` defined in the front matter of your `.md`
{{% note "ZgotmplZ" %}}
"ZgotmplZ" is a special value that indicates that unsafe content reached a CSS or URL context.
{{% /note %}}
-
diff --git a/docs/content/en/functions/safeHTML.md b/docs/content/en/functions/safeHTML.md
@@ -2,7 +2,6 @@
title: safeHTML
# linktitle:
description: Declares a provided string as a "safe" HTML document to avoid escaping by Go templates.
-godocref: https://golang.org/src/html/template/content.go?s=1374:1385#L25
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
diff --git a/docs/content/en/functions/safeHTMLAttr.md b/docs/content/en/functions/safeHTMLAttr.md
@@ -2,7 +2,6 @@
title: safeHTMLAttr
# linktitle: safeHTMLAttr
description: Declares the provided string as a safe HTML attribute.
-godocref: https://golang.org/src/html/template/content.go?s=1661:1676#L33
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
@@ -29,4 +28,3 @@ Example: Given a site-wide `config.toml` that contains this menu entry:
* <span class="bad">`<a href="{{ .URL }}">` → `<a href="#ZgotmplZ">`</span>
* <span class="good">`<a {{ printf "href=%q" .URL | safeHTMLAttr }}>` → `<a href="irc://irc.freenode.net/#golang">`</span>
-
diff --git a/docs/content/en/functions/safeJS.md b/docs/content/en/functions/safeJS.md
@@ -2,7 +2,6 @@
title: safeJS
# linktitle:
description: Declares the provided string as a known safe JavaScript string.
-godocref: https://golang.org/src/html/template/content.go?s=2548:2557#L51
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
@@ -28,4 +27,3 @@ Example: Given `hash = "619c16f"` defined in the front matter of your `.md` file
* <span class="good">`<script>var form_{{ .Params.hash | safeJS }};…</script>` → `<script>var form_619c16f;…</script>`</span>
* <span class="bad">`<script>var form_{{ .Params.hash }};…</script>` → `<script>var form_"619c16f";…</script>`</span>
-
diff --git a/docs/content/en/functions/safeURL.md b/docs/content/en/functions/safeURL.md
@@ -1,7 +1,6 @@
---
title: safeURL
description: Declares the provided string as a safe URL or URL substring.
-godocref: https://golang.org/pkg/html/template/#HTMLEscape
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
diff --git a/docs/content/en/functions/scratch.md b/docs/content/en/functions/scratch.md
@@ -1,7 +1,6 @@
---
title: .Scratch
description: Acts as a "scratchpad" to store and manipulate data.
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
@@ -43,7 +42,7 @@ Since Hugo 0.43, there are two different ways of using Scratch:
#### The local `newScratch`
-{{< new-in "0.43.0" >}} A Scratch instance can also be assigned to any variable using the `newScratch` function. In this case, no Page or Shortcode context is required and the scope of the scratch is only local. The methods detailed below are available from the variable the Scratch instance was assigned to.
+{{< new-in "0.43" >}} A Scratch instance can also be assigned to any variable using the `newScratch` function. In this case, no Page or Shortcode context is required and the scope of the scratch is only local. The methods detailed below are available from the variable the Scratch instance was assigned to.
```go-html-template
{{ $data := newScratch }}
@@ -139,7 +138,7 @@ Return an array of values from `key` sorted by `mapKey`.
#### .Delete
-{{< new-in "0.38.0" >}} Remove the given key.
+{{< new-in "0.38" >}} Remove the given key.
```go-html-template
{{ $scratch.Set "greeting" "Hello" }}
diff --git a/docs/content/en/functions/seq.md b/docs/content/en/functions/seq.md
@@ -2,7 +2,6 @@
title: seq
# linktitle:
description: Creates a sequence of integers.
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
diff --git a/docs/content/en/functions/sha.md b/docs/content/en/functions/sha.md
@@ -2,7 +2,6 @@
title: sha
# linktitle: sha
description: Hashes the given input and returns either an SHA1 or SHA256 checksum.
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
diff --git a/docs/content/en/functions/shuffle.md b/docs/content/en/functions/shuffle.md
@@ -2,7 +2,6 @@
title: shuffle
# linktitle:
description: Returns a random permutation of a given array or slice.
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-04-30
diff --git a/docs/content/en/functions/singularize.md b/docs/content/en/functions/singularize.md
@@ -2,7 +2,6 @@
title: singularize
# linktitle: singularize
description: Converts a word according to a set of common English singularization rules.
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
@@ -22,4 +21,3 @@ aliases: []
`{{ "cats" | singularize }}` → "cat"
See also the `.Data.Singular` [taxonomy variable](/variables/taxonomy/) for singularizing taxonomy names.
-
diff --git a/docs/content/en/functions/site.md b/docs/content/en/functions/site.md
@@ -2,7 +2,6 @@
title: site
linktitle: site
description: The `site` function provides global access to the same data as the `.Site` page method.
-godocref:
date: 2021-02-11
publishdate: 2021-02-11
lastmod: 2021-02-11
@@ -22,5 +21,3 @@ aliases: []
---
`site` is a global function which returns the same data as the `.Site` page method. See: [Site Variables]({{< relref "/variables/site" >}}).
-
-
diff --git a/docs/content/en/functions/slice.md b/docs/content/en/functions/slice.md
@@ -2,7 +2,6 @@
title: slice
# linktitle: slice
description: Creates a slice (array) of all passed arguments.
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
diff --git a/docs/content/en/functions/slicestr.md b/docs/content/en/functions/slicestr.md
@@ -2,7 +2,6 @@
title: slicestr
# linktitle:
description: Creates a slice of a half-open range, including start and end indices.
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
@@ -24,4 +23,3 @@ The `end` index can be omitted; it defaults to the string's length.
* `{{slicestr "BatMan" 3}}` → "Man"
* `{{slicestr "BatMan" 0 3}}` → "Bat"
-
diff --git a/docs/content/en/functions/sort.md b/docs/content/en/functions/sort.md
@@ -2,7 +2,6 @@
title: sort
# linktitle: sort
description: Sorts maps, arrays, and slices and returns a sorted slice.
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
@@ -62,4 +61,3 @@ Authors: {{ range sort .Site.Params.authors "lastName" "desc" }}{{ .lastName }}
→ Outputs Authors: Perkins Linsley Bergevin
```
-
diff --git a/docs/content/en/functions/split.md b/docs/content/en/functions/split.md
@@ -2,7 +2,6 @@
title: split
# linktitle: split
description: splits a string into substrings separated by a delimiter
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
@@ -20,5 +19,3 @@ aliases: []
---
* `{{split "tag1,tag2,tag3" "," }}` → ["tag1" "tag2" "tag3"]
-
-
diff --git a/docs/content/en/functions/string.md b/docs/content/en/functions/string.md
@@ -2,7 +2,6 @@
title: string
# linktitle: string
description: Creates a string from the argument passed to the function
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
@@ -20,4 +19,3 @@ aliases: []
---
* `{{string "BatMan"}}` → "BatMan"
-
diff --git a/docs/content/en/functions/strings.Count.md b/docs/content/en/functions/strings.Count.md
@@ -1,7 +1,6 @@
---
title: strings.Count
description: Returns the number of non-overlapping instances of a substring within a string.
-godocref:
date: 2020-09-07
publishdate: 2020-09-07
lastmod: 2020-09-07
diff --git a/docs/content/en/functions/strings.HasSuffix.md b/docs/content/en/functions/strings.HasSuffix.md
@@ -1,7 +1,6 @@
---
title: strings.HasSuffix
description: Determine whether or not a given string ends with the provided trailing suffix string.
-godocref:
date: 2019-08-13
publishdate: 2019-08-13
lastmod: 2019-08-13
diff --git a/docs/content/en/functions/strings.Repeat.md b/docs/content/en/functions/strings.Repeat.md
@@ -2,7 +2,6 @@
title: strings.Repeat
# linktitle:
description: Returns INPUT repeated COUNT times.
-godocref:
date: 2018-05-31
publishdate: 2018-05-31
lastmod: 2018-05-31
diff --git a/docs/content/en/functions/strings.RuneCount.md b/docs/content/en/functions/strings.RuneCount.md
@@ -1,7 +1,6 @@
---
title: strings.RuneCount
description: Determines the number of runes in a string.
-godocref:
date: 2018-06-01
publishdate: 2018-06-01
lastmod: 2018-06-01
@@ -25,4 +24,4 @@ In contrast with `strings.CountRunes` function, which strips HTML and whitespace
<!-- outputs a content length of 9 runes. -->
```
-[`utf8.RuneCount`]: https://golang.org/pkg/unicode/utf8/#RuneCount-
\ No newline at end of file
+[`utf8.RuneCount`]: https://golang.org/pkg/unicode/utf8/#RuneCount
diff --git a/docs/content/en/functions/strings.TrimLeft.md b/docs/content/en/functions/strings.TrimLeft.md
@@ -1,7 +1,6 @@
---
title: strings.TrimLeft
description: Returns a slice of a given string with all leading characters contained in the cutset removed.
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
diff --git a/docs/content/en/functions/strings.TrimPrefix.md b/docs/content/en/functions/strings.TrimPrefix.md
@@ -1,7 +1,6 @@
---
title: strings.TrimPrefix
description: Returns a given string s without the provided leading prefix string. If s doesn't start with prefix, s is returned unchanged.
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
@@ -22,4 +21,4 @@ Given the string `"aabbaa"`, the specified prefix is only removed if `"aabbaa"`
{{ strings.TrimPrefix "a" "aabbaa" }} → "abbaa"
{{ strings.TrimPrefix "aa" "aabbaa" }} → "bbaa"
- {{ strings.TrimPrefix "aaa" "aabbaa" }} → "aabbaa"-
\ No newline at end of file
+ {{ strings.TrimPrefix "aaa" "aabbaa" }} → "aabbaa"
diff --git a/docs/content/en/functions/strings.TrimRight.md b/docs/content/en/functions/strings.TrimRight.md
@@ -1,7 +1,6 @@
---
title: strings.TrimRight
description: Returns a slice of a given string with all trailing characters contained in the cutset removed.
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
@@ -25,4 +24,3 @@ Given the string `"abba"`, trailing `"a"`'s can be removed a follows:
Numbers can be handled as well:
{{ strings.TrimRight 12 1221341221 }} → "122134"
-
diff --git a/docs/content/en/functions/strings.TrimSuffix.md b/docs/content/en/functions/strings.TrimSuffix.md
@@ -1,7 +1,6 @@
---
title: strings.TrimSuffix
description: Returns a given string s without the provided trailing suffix string. If s doesn't end with suffix, s is returned unchanged.
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
@@ -22,4 +21,4 @@ Given the string `"aabbaa"`, the specified suffix is only removed if `"aabbaa"`
{{ strings.TrimSuffix "a" "aabbaa" }} → "aabba"
{{ strings.TrimSuffix "aa" "aabbaa" }} → "aabb"
- {{ strings.TrimSuffix "aaa" "aabbaa" }} → "aabbaa"-
\ No newline at end of file
+ {{ strings.TrimSuffix "aaa" "aabbaa" }} → "aabbaa"
diff --git a/docs/content/en/functions/substr.md b/docs/content/en/functions/substr.md
@@ -2,7 +2,6 @@
title: substr
# linktitle:
description: Extracts parts of a string from a specified character's position and returns the specified number of characters.
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
diff --git a/docs/content/en/functions/templates.Exists.md b/docs/content/en/functions/templates.Exists.md
@@ -2,7 +2,6 @@
title: templates.Exists
linktitle: ""
description: "Checks whether a template file exists under the given path relative to the `layouts` directory."
-godocref: ""
date: 2018-11-01
publishdate: 2018-11-01
lastmod: 2018-11-01
diff --git a/docs/content/en/functions/time.md b/docs/content/en/functions/time.md
@@ -2,7 +2,6 @@
title: time
linktitle:
description: Converts a timestamp string into a `time.Time` structure.
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
diff --git a/docs/content/en/functions/title.md b/docs/content/en/functions/title.md
@@ -2,7 +2,6 @@
title: title
# linktitle:
description: Converts all characters in the provided string to title case.
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
diff --git a/docs/content/en/functions/trim.md b/docs/content/en/functions/trim.md
@@ -2,7 +2,6 @@
title: trim
# linktitle:
description: Returns a slice of a passed string with all leading and trailing characters from cutset removed.
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
diff --git a/docs/content/en/functions/truncate.md b/docs/content/en/functions/truncate.md
@@ -2,7 +2,6 @@
title: truncate
# linktitle: truncate
description: Truncates a text to a max length without cutting words or leaving unclosed HTML tags.
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
diff --git a/docs/content/en/functions/union.md b/docs/content/en/functions/union.md
@@ -2,7 +2,6 @@
title: union
# linktitle: union
description: Given two arrays or slices, returns a new array that contains the elements or objects that belong to either or both arrays/slices.
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-03-12
diff --git a/docs/content/en/functions/uniq.md b/docs/content/en/functions/uniq.md
@@ -2,7 +2,6 @@
title: uniq
linktitle: uniq
description: Takes in a slice or array and returns a slice with subsequent duplicate elements removed.
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
@@ -25,7 +24,3 @@ needsexamples: false
{{ slice 1 2 3 2 | uniq }}
<!-- both return [1 2 3] -->
```
-
-
-
-
diff --git a/docs/content/en/functions/unix.md b/docs/content/en/functions/unix.md
@@ -2,7 +2,6 @@
title: .Unix
draft: false
description: .Unix returns the local Time corresponding to the given Unix time, sec seconds and nsec nanoseconds since January 1, 1970 UTC.
-godocref: https://golang.org/search?q=Unix#Functions
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
diff --git a/docs/content/en/functions/upper.md b/docs/content/en/functions/upper.md
@@ -2,7 +2,6 @@
title: upper
# linktitle: upper
description: Converts all characters in a string to uppercase
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
@@ -27,4 +26,3 @@ Note that `upper` can be applied in your templates in more than one way:
{{ upper "BatMan" }} → "BATMAN"
{{ "BatMan" | upper }} → "BATMAN"
```
-
diff --git a/docs/content/en/functions/urlize.md b/docs/content/en/functions/urlize.md
@@ -10,7 +10,6 @@ menu:
docs:
parent: "functions"
keywords: [urls,strings]
-godocref:
signature: ["urlize INPUT"]
hugoversion:
deprecated: false
diff --git a/docs/content/en/functions/urls.Parse.md b/docs/content/en/functions/urls.Parse.md
@@ -1,7 +1,6 @@
---
title: urls.Parse
description: Parse parses a given url, which may be relative or absolute, into a URL structure.
-godocref: https://godoc.org/net/url#URL
date: 2017-09-25
publishdate: 2017-09-25
lastmod: 2017-09-25
@@ -29,4 +28,4 @@ and returns a [URL](https://godoc.org/net/url#URL) structure. The struct fields
```
{{ $url.Scheme }} → "http"
{{ $url.Host }} → "www.gohugo.io"
-```-
\ No newline at end of file
+```
diff --git a/docs/content/en/functions/where.md b/docs/content/en/functions/where.md
@@ -2,7 +2,6 @@
title: where
# linktitle: where
description: Filters an array to only the elements containing a matching value for a given field.
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
diff --git a/docs/content/en/functions/with.md b/docs/content/en/functions/with.md
@@ -2,7 +2,6 @@
title: with
# linktitle: with
description: Rebinds the context (`.`) within its scope and skips the block if the variable is absent or empty.
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-03-12
diff --git a/docs/content/en/getting-started/configuration.md b/docs/content/en/getting-started/configuration.md
@@ -319,7 +319,7 @@ Default number of elements per page in [pagination](/templates/pagination/).
**Default value:** "page"
-The path element used during pagination (https://example.com/page/2).
+The path element used during pagination (`https://example.com/page/2`).
### permalinks
See [Content Management](/content-management/urls/#permalinks).
@@ -346,7 +346,7 @@ Enable this to make all relative URLs relative to content root. Note that this d
**Default value:** "ERROR"
-When using `ref` or `relref` to resolve page links and a link cannot resolved, it will be logged with this logg level. Valid values are `ERROR` (default) or `WARNING`. Any `ERROR` will fail the build (`exit -1`).
+When using `ref` or `relref` to resolve page links and a link cannot resolved, it will be logged with this log level. Valid values are `ERROR` (default) or `WARNING`. Any `ERROR` will fail the build (`exit -1`).
### refLinksNotFoundURL
URL to be used as a placeholder when a page reference cannot be found in `ref` or `relref`. Is used as-is.
@@ -450,7 +450,7 @@ noJSConfigInAssets {{< new-in "0.78.0" >}}
{{< new-in "0.67.0" >}}
-This is only relevant when running `hugo server`, and it allows to set HTTP headers during development, which allows you to test out your Content Security Policy and similar. The configuration format matches [Netlify's](https://docs.netlify.com/routing/headers/#syntax-for-the-netlify-configuration-file) with slighly more powerful [Glob matching](https://github.com/gobwas/glob):
+This is only relevant when running `hugo server`, and it allows to set HTTP headers during development, which allows you to test out your Content Security Policy and similar. The configuration format matches [Netlify's](https://docs.netlify.com/routing/headers/#syntax-for-the-netlify-configuration-file) with slightly more powerful [Glob matching](https://github.com/gobwas/glob):
{{< code-toggle file="config">}}
diff --git a/docs/content/en/getting-started/quick-start.md b/docs/content/en/getting-started/quick-start.md
@@ -23,7 +23,7 @@ This quick start uses `macOS` in the examples. For instructions about how to ins
It is recommended to have [Git installed](https://git-scm.com/downloads) to run this tutorial.
-For other approaches learning Hugo like book or a video tutorial refer to the [external learning resources](/getting-started/external-learning-resources/) page.
+For other approaches to learning Hugo (like books or video tutorials), refer to the [external learning resources](/getting-started/external-learning-resources/) page.
{{% /note %}}
## Step 1: Install Hugo
@@ -140,7 +140,7 @@ Press Ctrl+C to stop
**Navigate to your new site at [http://localhost:1313/](http://localhost:1313/).**
-Feel free to edit or add new content and simply refresh in browser to see changes quickly (You might need to force refresh in webbrowser, something like Ctrl-R usually works).
+Feel free to edit or add new content and simply refresh in browser to see changes quickly. (You might need to force refresh your web browser, something like Ctrl-R usually works.)
## Step 6: Customize the Theme
diff --git a/docs/content/en/getting-started/usage.md b/docs/content/en/getting-started/usage.md
@@ -176,7 +176,7 @@ Fortunately Hugo has an easy, embedded and simple solution for this. It's the fl
LiveReload works by injecting JavaScript into the pages Hugo generates. The script creates a connection from the browser's web socket client to the Hugo web socket server.
-LiveReload is awesome for development. However, some Hugo users may use `hugo server` in production to instantly display updated content. The following methods make it easy to disable LiveReload:
+The following methods make it easy to disable LiveReload:
```
hugo server --watch=false
diff --git a/docs/content/en/hosting-and-deployment/deployment-with-wercker.md b/docs/content/en/hosting-and-deployment/deployment-with-wercker.md
@@ -1,321 +0,0 @@
----
-title: Deployment with Wercker
-linktitle: Deployment with Wercker
-description: You can use a free tool called Wercker to automate deployments between your GitHub-hosted source and final website on GitHub pages.
-date: 2017-02-01
-publishdate: 2017-02-01
-lastmod: 2017-02-01
-categories: [hosting and deployment]
-keywords: [wercker,deployment,github,git]
-authors: [Arjen Schwarz, Samuel Debruyn]
-menu:
- docs:
- parent: "hosting-and-deployment"
- weight: 60
-weight: 60
-sections_weight: 60
-draft: false
-aliases: [/tutorials/automated-deployments/]
-toc: true
-wip: false
-notesforauthors:
----
-
-## Goals
-
-By the end of this guide, you will have completed the following:
-
-* Creating a basic Hugo project and website
-* Version controlling your project with Git
-* Adding your project to GitHub
-* Automating site deployments with a free tool called Wercker
-* Deploying your website to GitHub Pages for free hosting
-
-## Assumptions
-
-1. You have a working familiarity with using Git for version control
-2. You have a GitHub account
-3. You have already created a basic Hugo project
-
-If you do not meet these assumptions, the [GitHub help section][githubhelp] has an explanation of how to install and use git. [Signing up for a GitHub][ghsignup] account is free as well. If you are completely unfamiliar with creating a new Hugo website, visit the [Hugo Quick Start][quickstart].
-
-## Create a Basic Hugo Site
-
-{{% note "This Guide Uses the Hugo CLI" %}}
-All the work for setting up a Hugo project and using this guide is done via the Hugo CLI's most basic commands. See the [command line reference page](/commands/) for a more exhaustive account of the CLI's features.
-{{% /note %}}
-
-First, create your new Hugo website using the [`hugo new site` command][basicusage] and change into the newly created directory for the project. In this guide, we are calling our new project `hugo-wercker-example`:
-
-{{< code file="hugo-new-site.sh" >}}
-hugo new site hugo-wercker-example
-cd hugo-wercker-example
-{{< /code >}}
-
-We will use the [Herring Cove theme][] by first cloning the theme into the `themes` directory.
-
-{{< code file="clone-herring-cove-theme.sh" >}}
-cd themes
-git clone https://github.com/spf13/herring-cove.git
-{{< /code >}}
-
-Cloning the project from the command line will conflict with our own version control. So, we need to remove the external git configuration that came with the clone of Herring Cove:
-
-{{< code file="remove-herring-cove-git.sh" >}}
-rm -rf herring-cove/.git
-{{< /code >}}
-
-We need content for Hugo to build. Let's add a quick `/about` page:
-
-```
-hugo new about.md
-```
-
-{{% note %}}
-The preceding example for the about page leverages archetypes to scaffold a new content file with preconfigured front matter. [Find out more about Hugo's archetypes](/content-management/archetypes/).
-{{% /note %}}
-
-Now you can edit `contents/about.md` in your text editor of choice, but this is not necessary for the purposes of this guide. Running the following command will build your Hugo site into the `public` directory.
-
-Once the website is build, it's a good idea to run the following command to start a local server and ensure you're changes have been implemented:
-
-```
-hugo server --theme=herring-cove
-```
-
-If everything is fine, you should see something similar to the image below when you go to <http://localhost:1313> in your browser.
-
-![][1]
-
-## Set up Version Control in Git
-
-Adding Git to your project is done by running the `git init` command from the root directory of your project.
-
-```
-git init
-```
-
-Running `git status` at this point will show you the following entries: the `config.toml` file, the `themes` directory, the `contents` directory, and the `public` directory. However, we don't want the `public` directory version controlled because Wercker is responsible for generating the finished website later on. Therefore, we'll add a `.gitignore` file to our project that will exclude the `/public` directory from being tracked by Git:
-
-{{< code file="gitignore.sh" >}}
-echo "/public" >> .gitignore
-{{< /code >}}
-
-Wercker might complain when we try to build the site later on because we currently do not have any static files outside of the `themes` directory. We simply have to add *any* file to the static folder to prevent Wercker from complaining. To keep this guide simple, let's add a `robots.txt`. The following command creates the file in `/static`. The contents of the `robots.txt` lets search engines know they have full access to crawl the published website:
-
-{{< code file="addrobotstxt.sh" >}}
-echo "User-agent: *\nDisallow:" > static/robots.txt
-{{< /code >}}
-
-Now we need to add (i.e., [stage [see Git documentation]][gitbasics]) and commit all of our changes in the repository into Git:
-
-```
-git commit -a -m "Initial commit"
-```
-
-## Add the Project to GitHub
-
-Now we need to create a new repository on GitHub. Once you are signed in to GitHub, you can add a new repository by clicking on the **+▼** dropdown at the top right or by going to [https://github.com/new](https://github.com)..
-
-We then choose a name for the project (`hugo-wercker-example`). When clicking on create repository GitHub displays the commands for adding an existing project to the site. The commands shown below are the ones used for this site, if you're following along you will need to use the ones shown by GitHub. Once we've run those commands the project is in GitHub and we can move on to setting up the Wercker configuration. Be sure to replace `YourUserName` with your GitHub account/username:
-
-{{< code file="setup-gh-repo.sh" >}}
-git remote add origin git@github.com:YourUsername/hugo-wercker-example.git
-git push -u origin master
-{{< /code >}}
-
-![][2]
-
-## Set Up Wercker
-
-To sign up for a free Wercker account, go to <https://www.wercker.com> and click the **Sign Up** button on the top right of the home screen.
-
-![][3]
-
-### Register for Wercker with Your GitHub Account
-
-Sign up for Wercker using your GitHub credentials. If you don't have a GitHub account, or don't want to use it for your account, you have the option to register with a username and password as well. However, the second half of this guide---devoted to hosting your website on GitHub pages---will no longer be of interest to you.
-
-![][4]
-
-### Connect GitHub or Bitbucket
-
-After you are registered, you will need to link your GitHub or Bitbucket account to Wercker. You can link your account by navigating to your profile settings and then selecting "Git connections."
-
-![][17]
-
-If you registered for Wercker using GitHub, it will most likely look like the following image. To connect a missing service, click the **Connect** button, which may send you to either GitHub or Bitbucket to sign into your respective account.
-
-![][5]
-
-### Add Your Project
-
-Now that we've got all the preliminaries out of the way, it's time to set up our application. For this we click on the **+ Create** button next to Applications and choose GitHub as our provider.
-
-![][6]
-
-### Select a Repository
-
-When selecting GitHub, Wercker will show all your GitHub repositories. You have the option to filter repositories using the search input at the top of the repositories list. Once you have your repository selected, click the **Use selected repo** button.
-
-![][7]
-
-### Select the Repository Owner
-
-In the next step, Wercker asks you to select the repository owner. Select your GitHub account and continue.
-
-![][8]
-
-### Configure Access
-
-{{% note %}}
-This guide assumes you are using a public GitHub repository and understand that the [published GitHub Pages website will be available to everyone](https://help.github.com/articles/what-is-github-pages/#usage-limits).
-{{%/note %}}
-
-This step can be slightly tricky. Wercker does not have privileges to check out your private projects by default and therefore needs your permission to add a deploy key to your repository. By selecting the first option, you're simply allowing Wercker to check out the code via the same methods available to anyone visiting the project on GitHub.
-
-![][9]
-
-### Wercker.yml
-
-Wercker will now attempt to create an initial `wercker.yml` file for you. More specifically, it will create a code block within the Wercker interface that you can copy to your finished file. Wercker gives us a `debian` box because our project does not have any special requirements.
-
-Now we need to create a *wercker.yml* file in the root of our project. This file will contain our Wercker app's configuration. After we finish setting up our app, we will expand the contents of this file to build and deploy our website.
-
-![][10]
-
-### Public or Private
-
-This is a personal choice. You can make an app public so that everyone can see more details about it. Keeping it private or public does not provide any overt benefits for you as the creator of the app. That said, [the app we are currently creating has been made public][publicappurl] to facilitate easier usage of this hosting and deployment guide.
-
-![][11]
-
-#### App Successfully Created
-
-The application is now added and Wercker will offer you the chance to trigger a build. However, we will decline the offer because we haven't yet pushed our `wercker.yml` file to our GitHub repository.
-
-![][12]
-
-### Add the Hugo-build Step
-
-Now we need to add the Wercker steps to our build process. First, we go to the "Registry" action in the top menu. When in the registry, we can search for "hugo build". Select the "Hugo-Build by **arjen**" step.
-
-![][13]
-
-### Use the Hugo-build Step
-
-A summary of very basic usage is available at the top of the details for the Hugo-Build step. Below the basic usage is the contents of the `README.md` file associated with the step's repository. `README.md`'s on Wercker usually contain more details about the advanced options and examples of usage.
-
-We're not going to use any of the advanced features of Hugo-Build in this guide. Let's return to our project and add the first section of details we need to our `wercker.yml`.
-
-{{% warning "Hugo Version in `wercker.yml`" %}}
-The docs are a work in progress. As such, the `version` represented in this guide may not represent the version you've been using for local development. Be sure to use the appropriate Hugo version for your build step.
-{{% /warning %}}
-
-{{< code file="wercker-build-step.yml" >}}
-box: debian
-build:
- steps:
- - arjen/hugo-build:
- version: "0.17"
- theme: herring-cove
- flags: --buildDrafts=true
-{{< /code >}}
-
-We can conclude this first step by pushing our `wercker.yml` to our GitHub repository and then seeing the magic at work within Wercker's interface.
-
-{{< code file="push-wecker-to-gh.sh" >}}
-git commit -a -m "Add wercker.yml"
-git push origin master
-{{< /code >}}
-
-If completed and successful, a green check mark should appear in the commit column of your first build. However, this is only the build step. We still need to deploy the website to our free hosting on GitHub Pages. If you would like more details about the build, you can click the commit hash.
-
-![][14]
-
-### Add a GitHub Pages Deploy Step to `wercker.yml`
-
-In order to deploy to GitHub Pages, we need to add a deploy step to our `wercker.yml`. We are going to add `lukevevier/gh-pages`, the most popular GitHub Pages step in the Wercker Steps repository. Additionally, we need to ensure the box Wercker uses for our deployments has git and ssh installed. We can do this using the `install-packages` command. Here is our *final* `wercker.yml` file:
-
-{{< code file="wercker.yml" >}}
-box: debian
-build:
- steps:
- - arjen/hugo-build:
- version: "0.17"
- theme: herring-cove
- flags: --buildDrafts=true
-deploy:
- steps:
- - install-packages:
- packages: git ssh-client
- - lukevivier/gh-pages@0.2.1:
- token: $GIT_TOKEN
- domain: hugo-wercker.ig.nore.me
- basedir: public
-{{< /code >}}
-
-### How does the GitHub Pages Configuration Work?
-
-We've provided a some important information in our `wercker.yml`. First, we've added the domain we want to use for our published website. Configuring the domain here will ensure that GitHub Pages is aware of the domain we want to use.
-
-Secondly, we've configured the `basedir` to `public`. This is the directory that will be used as the website on GitHub Pages. `public` is also the default publishing directory in Hugo. (For more information, see [hugo's configuration docs][hugoconfig]).
-
-Lastly, you'll notice a `$GIT_TOKEN` variable. This is used for pushing our changes to GitHub. We will need to configure this token before Wercker can build our website.
-
-### Set the App's Deploy Target
-
-We can set our deploy target by going to our app's settings and clicking on **Deploy targets**. Now select **Add deploy target** and then **Custom deploy**.
-
-![][15]
-
-### Configure the Deploy Step in Wercker
-
-The next screen requires you fill in the deploy target name.
-
-1. Make sure you enable **auto deploy** from the **master** branch.
-2. Add a variable for the **GIT_TOKEN**. You'll need to create an access token in GitHub. Follow the directions in [GitHub help][accesstokenghhelp].
-3. With the deploy step configured in Wercker, we can push the updated wercker.yml file to GitHub and it will create the GitHub pages site for us.
-
-The website described in this guide is available at <http://hugo-wercker.ig.nore.me>.
-
-![][16]
-
-## Conclusion
-
-Once this workflow is established, you can update your website automatically by pushing any content changes to your GitHub repository.
-
-### Code for the Wercker Deployment Guide
-
-[The source code for the site used in this guide is available on GitHub][guidesource], as is the [Wercker Hugo Build step][guidestep].
-
-[1]: /images/hosting-and-deployment/deployment-with-wercker/creating-a-basic-hugo-site.png
-[2]: /images/hosting-and-deployment/deployment-with-wercker/adding-the-project-to-github.png
-[3]: /images/hosting-and-deployment/deployment-with-wercker/wercker-sign-up.png
-[4]: /images/hosting-and-deployment/deployment-with-wercker/wercker-sign-up-page.png
-[5]: /images/hosting-and-deployment/deployment-with-wercker/wercker-git-connections.png
-[6]: /images/hosting-and-deployment/deployment-with-wercker/wercker-add-app.png
-[7]: /images/hosting-and-deployment/deployment-with-wercker/wercker-select-repository.png
-[8]: /images/hosting-and-deployment/deployment-with-wercker/wercker-select-owner.png
-[9]: /images/hosting-and-deployment/deployment-with-wercker/wercker-access.png
-[10]: /images/hosting-and-deployment/deployment-with-wercker/werckeryml.png
-[11]: /images/hosting-and-deployment/deployment-with-wercker/public-or-not.png
-[12]: /images/hosting-and-deployment/deployment-with-wercker/and-we-ve-got-an-app.png
-[13]: /images/hosting-and-deployment/deployment-with-wercker/wercker-search.png
-[14]: /images/hosting-and-deployment/deployment-with-wercker/using-hugo-build.png
-[15]: /images/hosting-and-deployment/deployment-with-wercker/adding-a-github-pages-step.png
-[16]: /images/hosting-and-deployment/deployment-with-wercker/configure-the-deploy-step.png
-[17]: /images/hosting-and-deployment/deployment-with-wercker/wercker-account-settings.png
-
-
-[accesstokenghhelp]: https://help.github.com/articles/creating-an-access-token-for-command-line-use/
-[basicusage]: /getting-started/usage/
-[ghsignup]: https://github.com/join
-[gitbasics]: https://git-scm.com/book/en/v2/Getting-Started-Git-Basics
-[githubhelp]: https://help.github.com/articles/set-up-git/
-[guidesource]: https://github.com/ArjenSchwarz/hugo-wercker-example
-[guidestep]: https://github.com/ArjenSchwarz/wercker-step-hugo-build
-[Herring Cove theme]: https://github.com/spf13/herring-cove
-[hugoconfig]: /getting-started/configuration/
-[publicappurl]: https://app.wercker.com/#applications/5586dcbdaf7de9c51b02b0d5
-[quickstart]: /getting-started/quick-start/
diff --git a/docs/content/en/hosting-and-deployment/hosting-on-firebase.md b/docs/content/en/hosting-and-deployment/hosting-on-firebase.md
@@ -28,7 +28,6 @@ aliases: []
Go to the [Firebase console][console] and create a new project (unless you already have a project). You will need to globally install `firebase-tools` (node.js):
-
```
npm install -g firebase-tools
```
@@ -88,4 +87,3 @@ firebase deploy --token $FIREBASE_DEPLOY_TOKEN
[console]: https://console.firebase.google.com
[Quick Start]: /getting-started/quick-start/
[signup]: https://console.firebase.google.com/
-[Wercker]: /hosting-and-deployment/deployment-with-wercker/
diff --git a/docs/content/en/hugo-pipes/postcss.md b/docs/content/en/hugo-pipes/postcss.md
@@ -36,7 +36,7 @@ config [string]
: Path to the PostCSS configuration file
noMap [bool]
-: Default is `true`. Disable the default inline sourcemaps
+: Default is `false`. Disable the default inline sourcemaps
inlineImports [bool] {{< new-in "0.66.0" >}}
: Default is `false`. Enable inlining of @import statements. It does so recursively, but will only import a file once.
diff --git a/docs/content/en/news/0.14-relnotes/index.md b/docs/content/en/news/0.14-relnotes/index.md
@@ -24,7 +24,7 @@ Hugo also depends on a lot of other great projects. A big thanks to all of our d
- Add `AsciiDoc` support using external helpers.
- Add experimental support for [`Mmark`](https://github.com/miekg/mmark) markdown processor
- Bash autocomplete support via `genautocomplete` command
-- Add section menu support for a [Section Menu for "the Lazy Blogger"](http://gohugo.io/extras/menus.md#section-menu-for-the-lazy-blogger")
+- Add section menu support for a [Section Menu for Lazy Bloggers](https://gohugo.io/templates/menu-templates/#section-menu-for-lazy-bloggers)
- Add support for `Ace` base templates
- Adding `RelativeURLs = true` to site config will now make all the relative URLs relative to the content root.
- New template functions:
diff --git a/docs/content/en/news/0.86.1-relnotes/index.md b/docs/content/en/news/0.86.1-relnotes/index.md
@@ -2,7 +2,7 @@
---
date: 2021-07-30
title: "Hugo 0.86.1: One Bug Fix"
-description: "This version fixes a of bug introduced in 0.86.0."
+description: "This version fixes a bug introduced in 0.86.0."
categories: ["Releases"]
images:
- images/blog/hugo-bug-poster.png
diff --git a/docs/content/en/news/0.87.0-relnotes/featured.png b/docs/content/en/news/0.87.0-relnotes/featured.png
Binary files differ.
diff --git a/docs/content/en/news/0.87.0-relnotes/index.md b/docs/content/en/news/0.87.0-relnotes/index.md
@@ -1,18 +1,18 @@
---
date: 2021-08-03
-title: "0.87.0"
-description: "0.87.0"
+title: "Localized Time and Dates and Numbers"
+description: "Hugo 0.87.0 brings time zone support, localized time and dates and numbers backed by CLDR, and more."
categories: ["Releases"]
---
- Hugo `0.87` brings two long sought-after features: Default time zone support (per language if needed) for dates without zone offset or location info, and localized time and dates and numbers (backed by [CLDR](https://en.wikipedia.org/wiki/Common_Locale_Data_Repository)).
+Hugo `0.87` brings two long sought-after features: Default time zone support (per language if needed) for dates without zone offset or location info, and localized time and dates and numbers (backed by [CLDR](https://en.wikipedia.org/wiki/Common_Locale_Data_Repository)).
For more information, see:
* The [time zone config](https://gohugo.io/getting-started/configuration/#timezone) documentation.
* The [time.Format](https://gohugo.io/functions/dateformat/) documentation. This function will now give you localized dates (with weekdays and months in the current language). It supports all of Go's layout syntax, but also some predefined constants, e.g. `{{ .Date | time.Format ":date_long" }}`.
-* A set of new [localized number formatting ](https://gohugo.io/functions/lang/)
+* A set of new [localized number formatting ](https://gohugo.io/functions/lang/) functions.
Also in this release, we have switched to using [go-toml](https://github.com/pelletier/go-toml) for all things TOML in Hugo. A big thanks to [@pelletier](https://github.com/pelletier) for his work on the `v2` version. It's both faster than what we had and [TOML v1.0.0](https://toml.io/en/v1.0.0) compliant.
diff --git a/docs/content/en/news/0.88.0-relnotes/featured.png b/docs/content/en/news/0.88.0-relnotes/featured.png
Binary files differ.
diff --git a/docs/content/en/news/0.88.0-relnotes/index.md b/docs/content/en/news/0.88.0-relnotes/index.md
@@ -1,12 +1,12 @@
---
date: 2021-09-02
-title: "0.88.0"
-description: "0.88.0"
+title: "Go 1.17 Update"
+description: "Hugo 0.88.0 brings Go 1.17 support, a dependency refresh, and more."
categories: ["Releases"]
---
- The most important piece in this release is the Go 1.17 update. This release is built with that new Go version, but also and more importantly, the Hugo Modules logic has been updated to support Go's new way of (lazy) loading transitive dependencies. If you already have Go 1.17 installed, building existing Hugo Modules backed projects have not been an issue, but `hugo mod init` for a new project could give you _too new_ versions of transitive dependencies. Hugo 0.88 fixes this.
+The most important piece in this release is the Go 1.17 update. This release is built with that new Go version, but also and more importantly, the Hugo Modules logic has been updated to support Go's new way of (lazy) loading transitive dependencies. If you already have Go 1.17 installed, building existing Hugo Modules backed projects have not been an issue, but `hugo mod init` for a new project could give you _too new_ versions of transitive dependencies. Hugo 0.88 fixes this.
This release represents **26 contributions by 6 contributors** to the main Hugo code base.[@bep](https://github.com/bep) leads the Hugo development with a significant amount of contributions, but also a big shoutout to [@dependabot[bot]](https://github.com/apps/dependabot), [@helfper](https://github.com/helfper), and [@wzshiming](https://github.com/wzshiming) for their ongoing contributions.
@@ -26,7 +26,7 @@ Hugo now has:
### Templates
-* Handle nil values in time.AsTime" [abd969a6](https://github.com/gohugoio/hugo/commit/abd969a670852f9ed57c1a26434445aa985706fe) [@bep](https://github.com/bep)
+* Handle nil values in time.AsTime [abd969a6](https://github.com/gohugoio/hugo/commit/abd969a670852f9ed57c1a26434445aa985706fe) [@bep](https://github.com/bep)
* Handle nil values in time.AsTime [3e110728](https://github.com/gohugoio/hugo/commit/3e11072892ca31bb76980ee38890a4bd92d83dfd) [@bep](https://github.com/bep) [#8865](https://github.com/gohugoio/hugo/issues/8865)
### Other
@@ -39,13 +39,13 @@ Hugo now has:
* Avoid failing with "module not found" for hugo mod init and similar [a0489c2d](https://github.com/gohugoio/hugo/commit/a0489c2dfd3ceb4d0702de0da7a4af3eabce05e5) [@bep](https://github.com/bep) [#8940](https://github.com/gohugoio/hugo/issues/8940)
* Update to Go 1.17 [0fc2ce9e](https://github.com/gohugoio/hugo/commit/0fc2ce9e4bf0524994a861b7300e4332f6f8d390) [@bep](https://github.com/bep) [#8930](https://github.com/gohugoio/hugo/issues/8930)
* Remove Pygments from snapcraft.yml [32569285](https://github.com/gohugoio/hugo/commit/32569285c181c8798ef594c12d3cfd7f9a252a04) [@anthonyfok](https://github.com/anthonyfok)
-* bump github.com/fsnotify/fsnotify from 1.4.9 to 1.5.0" [5a46eefb](https://github.com/gohugoio/hugo/commit/5a46eefbc6da3463b796ada8d15902be197455a3) [@bep](https://github.com/bep) [#8920](https://github.com/gohugoio/hugo/issues/8920)
+* bump github.com/fsnotify/fsnotify from 1.4.9 to 1.5.0 [5a46eefb](https://github.com/gohugoio/hugo/commit/5a46eefbc6da3463b796ada8d15902be197455a3) [@bep](https://github.com/bep) [#8920](https://github.com/gohugoio/hugo/issues/8920)
* Add tabindex when code is not highlighted [7a15edaf](https://github.com/gohugoio/hugo/commit/7a15edafe240471c072d3548b72ccda0271ffd8f) [@helfper](https://github.com/helfper)
* bump github.com/evanw/esbuild from 0.12.17 to 0.12.22 [2f0945ba](https://github.com/gohugoio/hugo/commit/2f0945bafe501103abe97b2f2b5566b28ec48e52) [@dependabot[bot]](https://github.com/apps/dependabot)
* bump golang.org/x/text from 0.3.6 to 0.3.7 [7ba3f3d2](https://github.com/gohugoio/hugo/commit/7ba3f3d201e386cb9c7c15df5a6cc1c4b46473bd) [@dependabot[bot]](https://github.com/apps/dependabot)
* bump github.com/fsnotify/fsnotify from 1.4.9 to 1.5.0 [f7016524](https://github.com/gohugoio/hugo/commit/f70165242b98e3ee182fbac08bf2893a7f09e961) [@dependabot[bot]](https://github.com/apps/dependabot)
-* Prevent minifier from removing quoutes around post-processed attributes [bc0743ed](https://github.com/gohugoio/hugo/commit/bc0743ed8eafc3c2d9b21a1e8f1b05d64b85e8ba) [@bep](https://github.com/bep) [#8884](https://github.com/gohugoio/hugo/issues/8884)
-* Avoid too many watch file handles causing the server to fail to start" [ffa2fe61](https://github.com/gohugoio/hugo/commit/ffa2fe61172aa0d892234b23d1497c77a6a7f5c4) [@bep](https://github.com/bep)
+* Prevent minifier from removing quotes around post-processed attributes [bc0743ed](https://github.com/gohugoio/hugo/commit/bc0743ed8eafc3c2d9b21a1e8f1b05d64b85e8ba) [@bep](https://github.com/bep) [#8884](https://github.com/gohugoio/hugo/issues/8884)
+* Avoid too many watch file handles causing the server to fail to start [ffa2fe61](https://github.com/gohugoio/hugo/commit/ffa2fe61172aa0d892234b23d1497c77a6a7f5c4) [@bep](https://github.com/bep)
* Remove some pygments references [d966f5d0](https://github.com/gohugoio/hugo/commit/d966f5d08d7f75f1ae9acd94e292bf61de2adf0d) [@helfper](https://github.com/helfper)
* Avoid too many watch file handles causing the server to fail to start [3f38c785](https://github.com/gohugoio/hugo/commit/3f38c785b7208440e2a9dd9a80cb39d4ae23e676) [@wzshiming](https://github.com/wzshiming) [#8904](https://github.com/gohugoio/hugo/issues/8904)
* bump github.com/getkin/kin-openapi from 0.68.0 to 0.74.0 [24589c08](https://github.com/gohugoio/hugo/commit/24589c0814bc5d21565470bec6215ee792f1655e) [@dependabot[bot]](https://github.com/apps/dependabot)
@@ -60,8 +60,3 @@ Hugo now has:
* Fix import order for ./foo when both ./foo.js and ./foo/index.js exists [cf73cc2e](https://github.com/gohugoio/hugo/commit/cf73cc2ececd4e794df09ea382a38ab18960d84e) [@bep](https://github.com/bep) [#8945](https://github.com/gohugoio/hugo/issues/8945)
* Fix it so disableKinds etc. does not get merged in from theme [f4ffeea7](https://github.com/gohugoio/hugo/commit/f4ffeea71dd3d044a2628bbb5d6634680667398f) [@bep](https://github.com/bep) [#8866](https://github.com/gohugoio/hugo/issues/8866)
* Fix `lang.FormatPercent` description [d6c8cd77](https://github.com/gohugoio/hugo/commit/d6c8cd771834ae2913658c652e30a9feadc2a7b7) [@salim-b](https://github.com/salim-b)
-
-
-
-
-
diff --git a/docs/content/en/news/0.88.1-relnotes/index.md b/docs/content/en/news/0.88.1-relnotes/index.md
@@ -1,8 +1,8 @@
---
date: 2021-09-04
-title: "Hugo 0.88.1: A couple of Bug Fixes"
-description: "This version fixes a couple of bugs introduced in 0.88.0."
+title: "Hugo 0.88.1: One Fix"
+description: "This version fixes a release issue introduced in 0.88.0."
categories: ["Releases"]
images:
- images/blog/hugo-bug-poster.png
diff --git a/docs/content/en/news/http2-server-push-in-hugo.md b/docs/content/en/news/http2-server-push-in-hugo.md
@@ -1,78 +0,0 @@
----
-title: "HTTP/2 Server Push in Hugo"
-date: 2017-07-24T18:36:00+02:00
-description: >
- As every page in Hugo can be output to multiple formats, it is easy to create Netlify's _redirects and _headers files on the fly.
-categories: [blog]
-keywords: []
-slug: "http2-server-push-in-hugo"
-aliases: []
-author: bep
-images:
-- images/gohugoio-card-1.png
----
-
-**Netlify** recently announced support for [HTTP/2 server push](https://www.netlify.com/blog/2017/07/18/http/2-server-push-on-netlify/), and we have now added it to the **gohugo.io** sites for the main `CSS` and `JS` bundles, along with server-side 301 redirect support.
-
-If you navigate to https://gohugo.io and look in the Chrome developer network console, you should now see `Push` as the new source ("Initiator") for the `CSS` and `JSS`:
-
-{{< figure src="/images/blog/hugo-http2-push.png" caption="Network log for https://gohugo.io" >}}
-
-**Setting up this in Hugo was easy:**
-
-## 1. Configure Netlify Output Formats
-
-Add a new custom media type and two new output formats to `config.toml`. For more on output formats in Hugo, see [Custom Output Formats](/templates/output-formats/).
-
-```toml
-[outputs]
-home = [ "HTML", "RSS", "REDIR", "HEADERS" ]
-
-[mediaTypes]
-[mediaTypes."text/netlify"]
-suffix = ""
-delimiter = ""
-
-[outputFormats]
-[outputFormats.REDIR]
-mediatype = "text/netlify"
-baseName = "_redirects"
-isPlainText = true
-notAlternative = true
-[outputFormats.HEADERS]
-mediatype = "text/netlify"
-baseName = "_headers"
-isPlainText = true
-notAlternative = true
-```
-## 2. Add Template For the _headers File
-
-Add `layouts/index.headers`:
-
-```bash
-/*
- X-Frame-Options: DENY
- X-XSS-Protection: 1; mode=block
- X-Content-Type-Options: nosniff
- Referrer-Policy: origin-when-cross-origin
-*/
- Link: <{{ "dist/app.bundle.js" | relURL }}>; rel=preload; as=script
- Link: <{{ "dist/main.css" | relURL }}>; rel=preload; as=style
-```
-The template above creates both a security header definition and a HTTP/2 server push configuration.
-
-Also note that this is a template for the home page, so the full `Page` with its `Site` and many variables are available. You can also use `partial` to include other templates.
-
-
-## 3. Add Template For the _redirects File
-Add `layouts/index.redir`:
-```bash
-# Netlify redirects. See https://www.netlify.com/docs/redirects/
-{{ range $p := .Site.Pages -}}
-{{ range .Aliases }}
-{{ . | printf "%-35s" }} {{ $p.RelPermalink -}}
-{{ end -}}
-{{- end -}}
-```
-The template above creates 301 redirects for your [aliases](/content-management/urls/#aliases), so you will probably want to turn off aliases in your `config.toml`: `disableAliases = true`.
-
diff --git a/docs/content/en/readfiles/pages-vs-site-pages.md b/docs/content/en/readfiles/pages-vs-site-pages.md
@@ -1,8 +1,8 @@
* A _regular_ page is a "post" page or a "content" page.
* A _leaf bundle_ is a regular page.
* A _list_ page can list _regular_ pages and other _list_ pages. Some
- examples are: homepage, section pages, _taxonomy term_ (`/tags/`) and
- _taxonomy_ (`/tags/foo/`) pages.
+ examples are: homepage, section pages, _taxonomy_ (`/tags/`) and
+ _term_ (`/tags/foo/`) pages.
* A _branch bundle_ is a _list_ page.
`.Site.Pages`
diff --git a/docs/content/en/templates/404.md b/docs/content/en/templates/404.md
@@ -48,7 +48,7 @@ Your 404.html file can be set to load automatically when a visitor enters a mist
* [GitHub Pages](/hosting-and-deployment/hosting-on-github/) and [GitLab Pages](/hosting-and-deployment/hosting-on-gitlab/). The 404 page is automatic.
* Apache. You can specify `ErrorDocument 404 /404.html` in an `.htaccess` file in the root of your site.
-* Nginx. You might specify `error_page 404 /404.html;` in your `nginx.conf` file.
+* Nginx. You might specify `error_page 404 /404.html;` in your `nginx.conf` file. [Details here](https://nginx.org/en/docs/http/ngx_http_core_module.html#error_page).
* Amazon AWS S3. When setting a bucket up for static web serving, you can specify the error file from within the S3 GUI.
* Amazon CloudFront. You can specify the page in the Error Pages section in the CloudFront Console. [Details here](https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/custom-error-pages.html)
* Caddy Server. Using `errors { 404 /404.html }`. [Details here](https://caddyserver.com/docs/errors)
diff --git a/docs/content/en/templates/alternatives.md b/docs/content/en/templates/alternatives.md
@@ -2,7 +2,6 @@
title: DEPRECATED - Alternative Templating Languages
linktitle: Alternative Templating
description: DEPRECATED - Support for Ace & Amber templating has been removed in version 0.62
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-20
diff --git a/docs/content/en/templates/base.md b/docs/content/en/templates/base.md
@@ -2,7 +2,6 @@
title: Base Templates and Blocks
linktitle:
description: The base and block constructs allow you to define the outer shell of your master templates (i.e., the chrome of the page).
-godocref: https://golang.org/pkg/text/template/#example_Template_block
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
diff --git a/docs/content/en/templates/data-templates.md b/docs/content/en/templates/data-templates.md
@@ -106,7 +106,7 @@ Achievements:
- "Reads documentation"
{{</ code-toggle >}}
-You can use the following code to render the `Short Description` in your layout::
+You can use the following code to render the `Short Description` in your layout:
```
<div>Short Description of {{.Site.Data.User0123.Name}}: <p>{{ index .Site.Data.User0123 "Short Description" | markdownify }}</p></div>
diff --git a/docs/content/en/templates/files.md b/docs/content/en/templates/files.md
@@ -2,7 +2,6 @@
title: Local File Templates
linktitle: Local File Templates
description: Hugo's `readDir` and `readFile` functions make it easy to traverse your project's directory structure and write file contents to your templates.
-godocref: https://golang.org/pkg/os/#FileInfo
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
diff --git a/docs/content/en/templates/introduction.md b/docs/content/en/templates/introduction.md
@@ -2,7 +2,6 @@
title: Introduction to Hugo Templating
linktitle: Introduction
description: Hugo uses Go's `html/template` and `text/template` libraries as the basis for the templating.
-godocref: https://golang.org/pkg/html/template/
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-25
diff --git a/docs/content/en/templates/lookup-order.md b/docs/content/en/templates/lookup-order.md
@@ -2,7 +2,6 @@
title: Hugo's Lookup Order
linktitle: Template Lookup Order
description: Hugo searches for the layout to use for a given page in a well defined order, starting from the most specific.
-godocref:
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-07-05
diff --git a/docs/content/en/templates/output-formats.md b/docs/content/en/templates/output-formats.md
@@ -123,6 +123,9 @@ The following is the full list of configuration options for output formats and t
`permalinkable`
: make `.Permalink` and `.RelPermalink` return the rendering Output Format rather than main ([see below](#link-to-output-formats)). This is enabled by default for `HTML` and `AMP`. **Default:** `false`.
+`weight`
+: Setting this to a non-zero value will be used as the first sort criteria.
+
## Output Formats for Pages
A `Page` in Hugo can be rendered to multiple *output formats* on the file
diff --git a/docs/content/en/templates/shortcode-templates.md b/docs/content/en/templates/shortcode-templates.md
@@ -369,7 +369,7 @@ More shortcode examples can be found in the [shortcodes directory for spf13.com]
## Inline Shortcodes
-{{< new-in "0.52.0" >}}
+{{< new-in "0.52" >}}
Since Hugo 0.52, you can implement your shortcodes inline -- e.g. where you use them in the content file. This can be useful for scripting that you only need in one place.
diff --git a/docs/content/en/templates/template-debugging.md b/docs/content/en/templates/template-debugging.md
@@ -2,7 +2,6 @@
title: Template Debugging
# linktitle: Template Debugging
description: You can use Go templates' `printf` function to debug your Hugo templates. These snippets provide a quick and easy visualization of the variables available to you in different contexts.
-godocref: https://golang.org/pkg/fmt/
date: 2017-02-01
publishdate: 2017-02-01
lastmod: 2017-02-01
diff --git a/docs/content/zh/templates/base.md b/docs/content/zh/templates/base.md
@@ -2,7 +2,6 @@
title: Base 模板 and Blocks
linktitle:
description: The base and block constructs allow you to define the outer shell of your master templates (i.e., the chrome of the page).
-godocref: https://golang.org/pkg/text/template/#example_Template_block
date: 2017-02-01
publishdate: 2018-08-11
lastmod: 2017-02-01
diff --git a/docs/data/docs.json b/docs/data/docs.json
@@ -3978,7 +3978,7 @@
]
},
"FormatPercent": {
- "Description": "FormatPercent formats number with the given precision for the current language.\nNote that the number is assumbed to be percent.",
+ "Description": "FormatPercent formats number with the given precision for the current language.\nNote that the number is assumed to be a percentage.",
"Args": [
"precision",
"number"
diff --git a/docs/data/homepagetweets.toml b/docs/data/homepagetweets.toml
@@ -13,20 +13,6 @@ link = "https://twitter.com/jscarto/status/1039648827815485440"
date = 2018-09-12T00:00:00Z
[[tweet]]
-name = "Jens Munch"
-twitter_handle = "@jensamunch"
-quote = "Hugo is really, really incredible... Now does resizing/resampling of images as well! Crazy that something so fast can be a static site generator... Amazing open-source project."
-link = "https://twitter.com/jensamunch/status/948533063537086464"
-date = 2018-01-03T04:00:00Z
-
-[[tweet]]
-name = "STOQE"
-twitter_handle = "@STOQE"
-quote = "I fear <a href='https://twitter.com/gohugoio' target='_blank'>@GoHugoIO</a> v0.22 might be so fast it creates a code vortex that time-warps me back to a time I used Wordpress. <a href='https://twitter.com/hashtag/gasp?src=hash'>#gasp</a>"
-link = "https://twitter.com/STOQE/status/874184881701494784"
-date = 2017-06-12T00:00:00Z
-
-[[tweet]]
name = "Christophe Diericx"
twitter_handle = "@spcrngr_"
quote = "The more I use <a href='https://gohugo.io' target='_blank'>gohugo.io</a>, the more I really like it. Super intuitive/powerful static site generator...great job <a href='https://twitter.com/gohugoio' target='_blank'>@GoHugoIO</a>"
diff --git a/docs/netlify.toml b/docs/netlify.toml
@@ -3,7 +3,7 @@ publish = "public"
command = "hugo --gc --minify"
[context.production.environment]
-HUGO_VERSION = "0.86.1"
+HUGO_VERSION = "0.88.1"
HUGO_ENV = "production"
HUGO_ENABLEGITINFO = "true"
@@ -11,21 +11,25 @@ HUGO_ENABLEGITINFO = "true"
command = "hugo --gc --minify --enableGitInfo"
[context.split1.environment]
-HUGO_VERSION = "0.86.1"
+HUGO_VERSION = "0.88.1"
HUGO_ENV = "production"
[context.deploy-preview]
command = "hugo --gc --minify --buildFuture -b $DEPLOY_PRIME_URL"
[context.deploy-preview.environment]
-HUGO_VERSION = "0.86.1"
+HUGO_VERSION = "0.88.1"
[context.branch-deploy]
command = "hugo --gc --minify -b $DEPLOY_PRIME_URL"
[context.branch-deploy.environment]
-HUGO_VERSION = "0.86.1"
+HUGO_VERSION = "0.88.1"
[context.next.environment]
HUGO_ENABLEGITINFO = "true"
+[[redirects]]
+from = "/npmjs/*"
+to = "/npmjs/"
+status = 200+
\ No newline at end of file
diff --git a/docs/resources/_gen/images/news/0.87.0-relnotes/featured_hud7315cc4b84c00922361254b17154b9c_104936_480x0_resize_catmullrom_3.png b/docs/resources/_gen/images/news/0.87.0-relnotes/featured_hud7315cc4b84c00922361254b17154b9c_104936_480x0_resize_catmullrom_3.png
Binary files differ.
diff --git a/docs/resources/_gen/images/news/0.87.0-relnotes/featured_hud7315cc4b84c00922361254b17154b9c_104936_640x0_resize_catmullrom_3.png b/docs/resources/_gen/images/news/0.87.0-relnotes/featured_hud7315cc4b84c00922361254b17154b9c_104936_640x0_resize_catmullrom_3.png
Binary files differ.
diff --git a/docs/resources/_gen/images/news/0.88.0-relnotes/featured_hubd2e74572b88af11154b43148569d005_87331_480x0_resize_catmullrom_3.png b/docs/resources/_gen/images/news/0.88.0-relnotes/featured_hubd2e74572b88af11154b43148569d005_87331_480x0_resize_catmullrom_3.png
Binary files differ.
diff --git a/docs/resources/_gen/images/news/0.88.0-relnotes/featured_hubd2e74572b88af11154b43148569d005_87331_640x0_resize_catmullrom_3.png b/docs/resources/_gen/images/news/0.88.0-relnotes/featured_hubd2e74572b88af11154b43148569d005_87331_640x0_resize_catmullrom_3.png
Binary files differ.
diff --git a/docs/static/npmjs/index.html b/docs/static/npmjs/index.html
@@ -0,0 +1,6 @@
+<html>
+ <head>
+ <meta name="go-import" content="gohugo.io/npmjs mod http://localhost:8072">
+ </head>
+ <body></body>
+</html>