diff --git a/docs/content/en/content-management/front-matter.md b/docs/content/en/content-management/front-matter.md index 0353fb1fe..2155f1992 100644 --- a/docs/content/en/content-management/front-matter.md +++ b/docs/content/en/content-management/front-matter.md @@ -65,7 +65,7 @@ audio : an array of paths to audio files related to the page; used by the `opengraph` [internal template](/templates/internal) to populate `og:audio`. cascade -: a map of Front Matter keys whose values are passed down to the page's descendents unless overwritten by self or a closer ancestor's cascade. See [Front Matter Cascade](#front-matter-cascade) for details. +: a map of Front Matter keys whose values are passed down to the page's descendants unless overwritten by self or a closer ancestor's cascade. See [Front Matter Cascade](#front-matter-cascade) for details. date : the datetime assigned to this page. This is usually fetched from the `date` field in front matter, but this behaviour is configurable. @@ -128,8 +128,7 @@ type : the type of the content; this value will be automatically derived from the directory (i.e., the [section][]) if not specified in front matter. url -: the full path to the content from the web root. It makes no assumptions about the path of the content file. It also ignores any language prefixes of -the multilingual feature. +: the full path to the content from the web root. It makes no assumptions about the path of the content file. See [URL Management](/content-management/urls/#set-url-in-front-matter). videos : an array of paths to videos related to the page; used by the `opengraph` [internal template](/templates/internal) to populate `og:video`. @@ -157,7 +156,7 @@ show_comments: false ## Front Matter Cascade -Any node or section can pass down to descendents a set of Front Matter values as long as defined underneath the reserved `cascade` Front Matter key. +Any node or section can pass down to descendants a set of Front Matter values as long as defined underneath the reserved `cascade` Front Matter key. ### Target Specific Pages @@ -202,9 +201,9 @@ cascade: banner: images/typewriter.jpg {{}} -With the above example the Blog section page and its descendents will return `images/typewriter.jpg` when `.Params.banner` is invoked unless: +With the above example the Blog section page and its descendants will return `images/typewriter.jpg` when `.Params.banner` is invoked unless: -- Said descendent has its own `banner` value set +- Said descendant has its own `banner` value set - Or a closer ancestor node has its own `cascade.banner` value set. diff --git a/docs/content/en/content-management/image-processing/index.md b/docs/content/en/content-management/image-processing/index.md index e2e964154..8f84145ac 100644 --- a/docs/content/en/content-management/image-processing/index.md +++ b/docs/content/en/content-management/image-processing/index.md @@ -229,7 +229,7 @@ See https://github.com/disintegration/imaging for more. If you want to trade qua By default the images is encoded in the source format, but you can set the target format as an option. -Valid values are `jpg`, `png`, `tif`, `bmp`, `gif` and `webp`. +Valid values are `bmp`, `gif`, `jpeg`, `jpg`, `png`, `tif`, `tiff`, and `webp`. ```go {{ $image.Resize "600x jpg" }} diff --git a/docs/content/en/content-management/menus.md b/docs/content/en/content-management/menus.md index 6b89c44da..aefc99e00 100644 --- a/docs/content/en/content-management/menus.md +++ b/docs/content/en/content-management/menus.md @@ -12,7 +12,7 @@ menu: docs: parent: "content-management" weight: 120 -weight: 120 #rem +weight: 120 aliases: [/extras/menus/] toc: true --- @@ -48,31 +48,24 @@ If all you need to do is add an entry to a menu, the simple form works well. #### A Single Menu -``` ---- +{{< code-toggle >}} menu: "main" ---- -``` +{{< /code-toggle >}} #### Multiple Menus -``` ---- +{{< code-toggle >}} menu: ["main", "footer"] ---- -``` +{{< /code-toggle >}} #### Advanced - -``` ---- +{{< code-toggle >}} menu: docs: parent: 'extras' weight: 20 ---- -``` +{{< /code-toggle >}} ## Add Non-content Entries to a Menu @@ -115,7 +108,7 @@ In this example, the top level of the menu is defined in your [site `config` fil ## Params -You can also add user-defined content to menu items via the `params` field. +You can also add user-defined content to menu items via the `params` field. A common use case is to define a custom param to add a css class to a specific menu item. @@ -130,7 +123,6 @@ A common use case is to define a custom param to add a css class to a specific m class = "highlight-menu-item" {{}} - ## Render Menus See [Menu Templates](/templates/menu-templates/) for information on how to render your site menus within your templates. diff --git a/docs/content/en/content-management/multilingual.md b/docs/content/en/content-management/multilingual.md index 5e7bed87c..c24c0ccc4 100644 --- a/docs/content/en/content-management/multilingual.md +++ b/docs/content/en/content-management/multilingual.md @@ -19,7 +19,7 @@ toc: true You should define the available languages in a `languages` section in your site configuration. -> Also See [Hugo Multilingual Part 1: Content translation](https://regisphilibert.com/blog/2018/08/hugo-multilingual-part-1-managing-content-translation/) +> Also See [Hugo Multilingual Part 1: Content translation] ## Configure Languages @@ -63,7 +63,7 @@ Anything not defined in a `languages` block will fall back to the global value f With the configuration above, all content, sitemap, RSS feeds, paginations, and taxonomy pages will be rendered below `/` in English (your default content language) and then below `/fr` in French. -When working with front matter `Params` in [single page templates][singles], omit the `params` in the key for the translation. +When working with front matter `Params` in [single page templates], omit the `params` in the key for the translation. `defaultContentLanguage` sets the project's default language. If not set, the default language will be `en`. @@ -83,25 +83,24 @@ disableLanguages = ["fr", "ja"] Note that you cannot disable the default content language. -We kept this as a standalone setting to make it easier to set via [OS environment](/getting-started/configuration/#configure-with-environment-variables): +We kept this as a standalone setting to make it easier to set via [OS environment]: ```bash HUGO_DISABLELANGUAGES="fr ja" hugo ``` + If you have already a list of disabled languages in `config.toml`, you can enable them in development like this: ```bash HUGO_DISABLELANGUAGES=" " hugo server ``` - ### Configure Multilingual Multihost From **Hugo 0.31** we support multiple languages in a multihost configuration. See [this issue](https://github.com/gohugoio/hugo/issues/4027) for details. This means that you can now configure a `baseURL` per `language`: - > If a `baseURL` is set on the `language` level, then all languages must have one and they must all be different. Example: @@ -123,7 +122,7 @@ title = "In English" With the above, the two sites will be generated into `public` with their own root: -```bash +```text public ├── en └── fr @@ -133,7 +132,7 @@ public When you run `hugo server` we will start multiple HTTP servers. You will typically see something like this in the console: -```bash +```text Web Server is available at 127.0.0.1:1313 (bind address 127.0.0.1) Web Server is available at 127.0.0.1:1314 (bind address 127.0.0.1) Press Ctrl+C to stop @@ -145,7 +144,6 @@ Live reload and `--navigateToChanged` between the servers work as expected. Taxonomies and [Blackfriday configuration][config] can also be set per language: - {{< code-toggle file="config" >}} [Taxonomies] tag = "tags" @@ -182,7 +180,7 @@ Considering the following example: The first file is assigned the English language and is linked to the second. The second file is assigned the French language and is linked to the first. -Their language is __assigned__ according to the language code added as a __suffix to the filename__. +Their language is __assigned__ according to the language code added as a __suffix to the filename__. By having the same **path and base filename**, the content pieces are __linked__ together as translated pages. @@ -195,7 +193,6 @@ If a file has no language code, it will be assigned the default language. This system uses different content directories for each of the languages. Each language's content directory is set using the `contentDir` param. {{< code-toggle file="config" >}} - languages: en: weight: 10 @@ -205,7 +202,6 @@ languages: weight: 20 languageName: "Français" contentDir: "content/french" - {{< /code-toggle >}} The value of `contentDir` can be any valid path -- even absolute path references. The only restriction is that the content directories cannot overlap. @@ -222,7 +218,7 @@ Their language is __assigned__ according to the content directory they are __pla By having the same **path and basename** (relative to their language content directory), the content pieces are __linked__ together as translated pages. -### Bypassing default linking. +### Bypassing default linking Any pages sharing the same `translationKey` set in front matter will be linked as translated pages regardless of basename or location. @@ -232,19 +228,17 @@ Considering the following example: 2. `/content/om.nn.md` 3. `/content/presentation/a-propos.fr.md` -```yaml -# set in all three pages +{{< code-toggle >}} translationKey: "about" -``` +{{< /code-toggle >}} By setting the `translationKey` front matter param to `about` in all three pages, they will be __linked__ as translated pages. - ### Localizing permalinks Because paths and filenames are used to handle linking, all translated pages will share the same URL (apart from the language subdirectory). -To localize the URLs, the [`slug`]({{< ref "/content-management/organization/index.md#slug" >}}) or [`url`]({{< ref "/content-management/organization/index.md#url" >}}) front matter param can be set in any of the non-default language file. +To localize the URLs, the [`slug`]({{< ref "/content-management/organization/index.md#slug" >}}) or [`url`]({{< ref "/content-management/organization/index.md#url" >}}) front matter param can be set in any of the non-default language file. For example, a French translation (`content/about.fr.md`) can have its own localized slug. @@ -253,7 +247,6 @@ Title: A Propos slug: "a-propos" {{< /code-toggle >}} - At render, Hugo will build both `/about/` and `/fr/a-propos/` while maintaining their translation linking. {{% note %}} @@ -283,16 +276,16 @@ To create a list of links to translated content, use a template similar to the f {{ if .IsTranslated }}

{{ i18n "translations" }}

{{ end }} {{< /code >}} -The above can be put in a `partial` (i.e., inside `layouts/partials/`) and included in any template, whether a [single content page][contenttemplate] or the [homepage][]. It will not print anything if there are no translations for a given page. +The above can be put in a `partial` (i.e., inside `layouts/partials/`) and included in any template, whether a [single content page][contenttemplate] or the [homepage]. It will not print anything if there are no translations for a given page. The above also uses the [`i18n` function][i18func] described in the next section. @@ -300,7 +293,6 @@ The above also uses the [`i18n` function][i18func] described in the next section `.AllTranslations` on a `Page` can be used to list all translations, including the page itself. On the home page it can be used to build a language navigator: - {{< code file="layouts/partials/allLanguages.html" >}}