diff --git a/content/content-management/taxonomies.md b/content/content-management/taxonomies.md index 443ec6899..d80e82c06 100644 --- a/content/content-management/taxonomies.md +++ b/content/content-management/taxonomies.md @@ -180,14 +180,14 @@ project_url = "https://github.com/spf13/hugo" ### YAML Front Matter with Taxonomies Example ```yaml -+++ +--- title: "Hugo: A fast and flexible static site generator" tags: ["Development", "Go", "fast", "Blogging"] categories: ["Development"] categories: ["Go Web Dev"] slug: "hugo" project_url: "https://github.com/spf13/hugo" -+++ +--- ``` ### JSON Front Matter with Taxonomies Example diff --git a/content/content-management/urls.md b/content/content-management/urls.md index 0604b9c57..389ac7d72 100644 --- a/content/content-management/urls.md +++ b/content/content-management/urls.md @@ -234,7 +234,7 @@ hugo config | FINDSTR /I canon ## Overriding URLS with Front Matter -In addition to specifying permalink values in your site configuration for different sections of content, Hugo provides even more granular for individual pieces of content. +In addition to specifying permalink values in your site configuration for different content sections, Hugo provides even more granular control for individual pieces of content. Both `slug` and `url` can be defined in individual front matter. For more information on content destinations at build time, seee [Content Organization][contentorg]. @@ -244,7 +244,7 @@ By default, all relative URLs are left unchanged by Hugo, which can be problemat Setting `relativeURLs` to `true` in your [site configuration][config] will cause Hugo to rewrite all relative URLs to be relative to the current content. -For example, if the `/post/first/` page contained a link to `/about/`, Hugo would rewrite that URL to `../../about/`. +For example, if your `/post/first/` page contains a link to `/about/`, Hugo will rewrite the URL to `../../about/`. [config]: /getting-started/configuration/ [contentorg]: /content-management/organization/