mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-21 20:46:30 -05:00
docs: Fix typos in content section
- changed preposition into intended infinitive for syntactical clarity - removed "easily" as it doesn't describe anything technical and is confusing (which is why the author may have used a preposition)
This commit is contained in:
parent
333bb05512
commit
a2cc2e75a6
2 changed files with 3 additions and 3 deletions
|
@ -82,7 +82,7 @@ Content of the file goes Here
|
||||||
## Variables
|
## Variables
|
||||||
|
|
||||||
There are a few predefined variables that Hugo is aware of and utilizes. The user can also create
|
There are a few predefined variables that Hugo is aware of and utilizes. The user can also create
|
||||||
any variable they want to. These will be placed into the `.Params` variable available to the templates.
|
any variable they want. These will be placed into the `.Params` variable available to the templates.
|
||||||
Field names are always normalized to lowercase (e.g. `camelCase: true` is available as `.Params.camelcase`).
|
Field names are always normalized to lowercase (e.g. `camelCase: true` is available as `.Params.camelcase`).
|
||||||
|
|
||||||
### Required variables
|
### Required variables
|
||||||
|
@ -113,7 +113,7 @@ Field names are always normalized to lowercase (e.g. `camelCase: true` is availa
|
||||||
|
|
||||||
## Configure Blackfriday rendering
|
## Configure Blackfriday rendering
|
||||||
|
|
||||||
It's possible to set some options for Markdown rendering in the page's front matter, as an override to the site wide configuration.
|
It's possible to set some options for Markdown rendering in the page's front matter as an override to the site wide configuration.
|
||||||
|
|
||||||
See [Configuration]({{< ref "overview/configuration.md#configure-blackfriday-rendering" >}}) for more.
|
See [Configuration]({{< ref "overview/configuration.md#configure-blackfriday-rendering" >}}) for more.
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,7 @@ title: Summaries
|
||||||
weight: 65
|
weight: 65
|
||||||
---
|
---
|
||||||
|
|
||||||
With the use of the `.Summary` [page variable](/templates/variables/), Hugo can generate summaries of content for easily showing snippets in summary views. The summary view snippets are automatically generated by Hugo. Where a piece of content is split for the content summary depends on whether the split is Hugo-defined or user-defined.
|
With the use of the `.Summary` [page variable](/templates/variables/), Hugo can generate summaries of content to show snippets in summary views. The summary view snippets are automatically generated by Hugo. Where a piece of content is split for the content summary depends on whether the split is Hugo-defined or user-defined.
|
||||||
|
|
||||||
Content summaries may also provide links to the original content, usually in the form of a "Read More..." link, with the help of the `.RelPermalink` or `.Permalink` variable, as well as the `.Truncated` boolean variable to determine whether such "Read More..." link is necessary.
|
Content summaries may also provide links to the original content, usually in the form of a "Read More..." link, with the help of the `.RelPermalink` or `.Permalink` variable, as well as the `.Truncated` boolean variable to determine whether such "Read More..." link is necessary.
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue