From 39f1401b0a00d97ce7ff4615487f7af94efe57d3 Mon Sep 17 00:00:00 2001 From: digitalcraftsman Date: Fri, 7 Apr 2017 19:12:10 +0200 Subject: [PATCH] Keep the name of content formats more consistent LGTM See PR rdwatters/hugo-docs-concept#74 --- content/content-management/shortcodes.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/content-management/shortcodes.md b/content/content-management/shortcodes.md index ae79b940e..f63dd6b4f 100644 --- a/content/content-management/shortcodes.md +++ b/content/content-management/shortcodes.md @@ -20,13 +20,13 @@ toc: true ## What is a Shortcode -Hugo loves markdown because of its simple content format, but there are times when markdown falls short. Often, content authors are forced to add raw HTML (e.g., video ``) to markdown content. We think this contradicts the beautiful simplicity of markdown's syntax. +Hugo loves Markdown because of its simple content format, but there are times when Markdown falls short. Often, content authors are forced to add raw HTML (e.g., video ``) to Markdown content. We think this contradicts the beautiful simplicity of Markdown's syntax. Hugo created **shortcodes** to circumvent these limitations. A shortcode is a simple snippet inside a content file that Hugo will render using a predefined template. Note that shortcodes will not work in template files. If you need the type of drop-in functionality that shortcodes provide but in a template, you most likely want a [partial template][partials] instead. -In addition to cleaner markdown, shortcodes can be updated any time to reflect new classes, techniques, or standards. At the point of site generation, Hugo shortcodes will easily merge in your changes. You avoid a possibly complicated search and replace operation. +In addition to cleaner Markdown, shortcodes can be updated any time to reflect new classes, techniques, or standards. At the point of site generation, Hugo shortcodes will easily merge in your changes. You avoid a possibly complicated search and replace operation. ## Using Shortcodes