From 914405c0effc16573edc580530a013d4f23595aa Mon Sep 17 00:00:00 2001 From: Christian Oliff Date: Thu, 25 Jun 2020 15:40:02 +0900 Subject: [PATCH] capitalization and indentation fix for taxonomies page (#1159) as a bonus, this prevents the horizontal scrollbar appearing on the markdown snippet at the the bottom --- content/en/content-management/taxonomies.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/content/en/content-management/taxonomies.md b/content/en/content-management/taxonomies.md index c69d189db..f5ee00cd3 100644 --- a/content/en/content-management/taxonomies.md +++ b/content/en/content-management/taxonomies.md @@ -194,13 +194,13 @@ Currently taxonomies only support the [default `weight => date` ordering of list ## Add custom metadata a Taxonomy or Term -If you need to add custom metadata to your taxonomy terms, you will need to create a page for that term at `/content///_index.md` and add your metadata in it's front matter. Continuing with our 'Actors' example, let's say you want to add a wikipedia page link to each actor. Your terms pages would be something like this: +If you need to add custom metadata to your taxonomy terms, you will need to create a page for that term at `/content///_index.md` and add your metadata in it's front matter. Continuing with our 'Actors' example, let's say you want to add a Wikipedia page link to each actor. Your terms pages would be something like this: {{< code file="/content/actors/bruce-willis/_index.md" >}} - --- - title: "Bruce Willis" - wikipedia: "https://en.wikipedia.org/wiki/Bruce_Willis" - --- +--- +title: "Bruce Willis" +wikipedia: "https://en.wikipedia.org/wiki/Bruce_Willis" +--- {{< /code >}}