diff --git a/content/en/about/features.md b/content/en/about/features.md index 11f9f65b7..ed8c25821 100644 --- a/content/en/about/features.md +++ b/content/en/about/features.md @@ -60,7 +60,7 @@ toc: true [content summaries]: /content-management/summaries/ [content types]: /content-management/types/ [Disqus]: https://disqus.com/ -[Dynamic menu]: /templates/menus/ +[Dynamic menu]: /templates/menu-templates/ [Extremely fast]: https://github.com/bep/hugo-benchmark [front matter]: /content-management/front-matter/ [functions]: /functions/ @@ -73,13 +73,13 @@ toc: true [organization for your projects]: /getting-started/directory-structure/ [pagevars]: /variables/page/ [Permalink]: /content-management/urls/#permalinks -[Powerful theming]: /themes/ +[Powerful theming]: /hugo-modules/theme-components/ [Pretty URLs]: /content-management/urls/ [RSS]: /templates/rss/ [Shortcodes]: /content-management/shortcodes/ [sort content]: /templates/ [supported formats]: /content-management/formats/ -[Syntax highlighting]: /tools/syntax-highlighting/ +[Syntax highlighting]: /content-management/syntax-highlighting/ [table of contents]: /content-management/toc/ [taxonomies]: /content-management/taxonomies/ [URLs]: /content-management/urls/ diff --git a/content/en/content-management/comments.md b/content/en/content-management/comments.md index 311f24c14..ad3a1b55d 100644 --- a/content/en/content-management/comments.md +++ b/content/en/content-management/comments.md @@ -64,7 +64,7 @@ These are some alternatives to Disqus: * [Utterances](https://utteranc.es/) (Open source, GitHub comments widget built on GitHub issues) [configuration]: /getting-started/configuration/ -[disquspartial]: /templates/partials/#disqus +[disquspartial]: /templates/internal/#disqus [disqussetup]: https://disqus.com/profile/signup/ [forum]: https://discourse.gohugo.io [front matter]: /content-management/front-matter/ diff --git a/content/en/content-management/front-matter.md b/content/en/content-management/front-matter.md index 6986f067f..c068b9006 100644 --- a/content/en/content-management/front-matter.md +++ b/content/en/content-management/front-matter.md @@ -92,7 +92,7 @@ keywords : the meta keywords for the content. layout -: the layout Hugo should select from the [lookup order][lookup] when rendering the content. If a `type` is not specified in the front matter, Hugo will look for the layout of the same name in the layout directory that corresponds with a content's section. See ["Defining a Content Type"][definetype] +: the layout Hugo should select from the [lookup order][lookup] when rendering the content. If a `type` is not specified in the front matter, Hugo will look for the layout of the same name in the layout directory that corresponds with a content's section. See [Content Types][content type]. lastmod : the datetime at which the content was last modified. @@ -229,10 +229,9 @@ It's possible to set some options for Markdown rendering in a content's front ma [config]: /getting-started/configuration/ "Hugo documentation for site configuration" [content type]: /content-management/types/ [contentorg]: /content-management/organization/ -[definetype]: /content-management/types/#defining-a-content-type "Learn how to specify a type and a layout in a content's front matter" [headless-bundle]: /content-management/page-bundles/#headless-bundle [json]: https://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf "Specification for JSON, JavaScript Object Notation" -[lists]: /templates/lists/#ordering-content "See how to order content in list pages; for example, templates that look to specific _index.md for content and front matter." +[lists]: /templates/lists/#order-content "See how to order content in list pages; for example, templates that look to specific _index.md for content and front matter." [lookup]: /templates/lookup-order/ "Hugo traverses your templates in a specific order when rendering content to allow for DRYer templating." [ordering]: /templates/lists/ "Hugo provides multiple ways to sort and order your content in list templates" [outputs]: /templates/output-formats/ "With the release of v22, you can output your content to any text format using Hugo's familiar templating" diff --git a/content/en/content-management/multilingual.md b/content/en/content-management/multilingual.md index 620ec0b93..82d95f6f1 100644 --- a/content/en/content-management/multilingual.md +++ b/content/en/content-management/multilingual.md @@ -571,7 +571,7 @@ If there is more than one language defined, the `LanguagePrefix` variable will e [lang.FormatAccounting]: /functions/lang/#langformataccounting [lang.FormatCurrency]: /functions/lang/#langformatcurrency [lang.FormatNumber]: /functions/lang/#langformatnumber -[lang.FormatNumberCustom]: functions/lang/#langformatnumbercustom +[lang.FormatNumberCustom]: /functions/lang/#langformatnumbercustom [lang.FormatPercent]: /functions/lang/#langformatpercent [lang.Merge]: /functions/lang.merge/ [menus]: /content-management/menus/ diff --git a/content/en/content-management/shortcodes.md b/content/en/content-management/shortcodes.md index 013532ce4..017267ec7 100644 --- a/content/en/content-management/shortcodes.md +++ b/content/en/content-management/shortcodes.md @@ -183,7 +183,7 @@ To demonstrate the remarkably efficiency of Hugo's shortcode feature, we have em ### `highlight` -This shortcode will convert the source code provided into syntax-highlighted HTML. Read more on [highlighting](/tools/syntax-highlighting/). `highlight` takes exactly one required `language` parameter and requires a closing shortcode. +This shortcode will convert the source code provided into syntax-highlighted HTML. Read more on [highlighting](/content-management/syntax-highlighting/). `highlight` takes exactly one required `language` parameter and requires a closing shortcode. #### Example `highlight` Input diff --git a/content/en/content-management/taxonomies.md b/content/en/content-management/taxonomies.md index da29fa7be..32227d52c 100644 --- a/content/en/content-management/taxonomies.md +++ b/content/en/content-management/taxonomies.md @@ -84,7 +84,7 @@ Moonrise Kingdom <- Value Hugo natively supports taxonomies. -Without adding a single line to your [site config][config] file, Hugo will automatically create taxonomies for `tags` and `categories`. That would be the same as manually [configuring your taxonomies](#configuring-taxonomies) as below: +Without adding a single line to your [site config][config] file, Hugo will automatically create taxonomies for `tags` and `categories`. That would be the same as manually [configuring your taxonomies](#configure-taxonomies) as below: {{< code-toggle copy="false" >}} [taxonomies] @@ -189,7 +189,7 @@ categories_weight = 44 By using taxonomic weight, the same piece of content can appear in different positions in different taxonomies. {{% note "Limits to Ordering Taxonomies" %}} -Currently taxonomies only support the [default `weight => date` ordering of list content](/templates/lists/#default-weight-date). For more information, see the documentation on [taxonomy templates](/templates/taxonomy-templates/). +Currently taxonomies only support the [default `weight => date` ordering of list content](/templates/lists/#default-weight--date--linktitle--filepath). For more information, see the documentation on [taxonomy templates](/templates/taxonomy-templates/). {{% /note %}} ## Add custom metadata to a Taxonomy or Term @@ -209,7 +209,7 @@ wikipedia: "https://en.wikipedia.org/wiki/Bruce_Willis" [content type]: /content-management/types/ [documentation on archetypes]: /content-management/archetypes/ [front matter]: /content-management/front-matter/ -[taxonomy list templates]: /templates/taxonomy-templates/#taxonomy-page-templates +[taxonomy list templates]: /templates/taxonomy-templates/#taxonomy-list-templates [taxonomy templates]: /templates/taxonomy-templates/ [terms within the taxonomy]: /templates/taxonomy-templates/#taxonomy-terms-templates "See how to order terms associated with a taxonomy" [config]: /getting-started/configuration/ diff --git a/content/en/content-management/toc.md b/content/en/content-management/toc.md index 6a0b73fe5..d2e71542a 100644 --- a/content/en/content-management/toc.md +++ b/content/en/content-management/toc.md @@ -50,7 +50,7 @@ Hugo will take this Markdown and create a table of contents from `## Introductio The built-in `.TableOfContents` variables outputs a `