diff --git a/content/about/what-is-hugo.md b/content/about/what-is-hugo.md index 4ae890f08..222ae1a80 100644 --- a/content/about/what-is-hugo.md +++ b/content/about/what-is-hugo.md @@ -8,7 +8,7 @@ lastmod: 2017-02-01 layout: single menu: main: - parent: "About Hugo" + parent: "about" weight: 10 weight: 10 sections_weight: 10 diff --git a/content/templates/output-formats.md b/content/templates/output-formats.md index da1207d51..92961a23c 100644 --- a/content/templates/output-formats.md +++ b/content/templates/output-formats.md @@ -31,7 +31,7 @@ This is the full set of built-in media types in Hugo: **Note:** -* It is possible to add custom media types or change the defaults; e.g., if want to change the suffix for `text/html` to `asp`. +* It is possible to add custom media types or change the defaults; e.g., if you want to change the suffix for `text/html` to `asp`. * The `Suffix` is the value that will be used for URLs and filenames for that media type in Hugo. * The `Type` is the identifier that must be used when defining new/custom `Output Formats` (see below). * The full set of media types will be registered in Hugo's built-in development server to make sure they are recognized by the browser. @@ -42,10 +42,10 @@ Example in `config.toml`: ```toml [mediaTypes] -[mediaTypes."text/enriched"] -suffix = "enr" -[mediaTypes."text/html"] -suffix = "asp" + [mediaTypes."text/enriched"] + suffix = "enr" + [mediaTypes."text/html"] + suffix = "asp" ``` The above example adds one new media type, `text/enriched`, and changes the suffix for the built-in `text/html` media type.