summaryrefslogtreecommitdiffstats
path: root/docs/content/en/methods/shortcode/InnerDeindent.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/content/en/methods/shortcode/InnerDeindent.md')
-rw-r--r--docs/content/en/methods/shortcode/InnerDeindent.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/content/en/methods/shortcode/InnerDeindent.md b/docs/content/en/methods/shortcode/InnerDeindent.md
index 136412bc7..b5f5cf206 100644
--- a/docs/content/en/methods/shortcode/InnerDeindent.md
+++ b/docs/content/en/methods/shortcode/InnerDeindent.md
@@ -14,7 +14,7 @@ Similar to the [`Inner`] method, `InnerDeindent` returns the content between ope
This allows us to effectively bypass the rules governing [indentation] as provided in the [CommonMark] specification.
-Consider this markdown, an unordered list with a small gallery of thumbnail images within each list item:
+Consider this Markdown, an unordered list with a small gallery of thumbnail images within each list item:
{{< code file=content/about.md lang=md >}}
- Gallery one
@@ -42,7 +42,7 @@ With this shortcode, calling `Inner` instead of `InnerDeindent`:
</div>
{{< /code >}}
-Hugo renders the markdown to:
+Hugo renders the Markdown to:
```html
<ul>
@@ -73,7 +73,7 @@ Although technically correct per the CommonMark specification, this is not what
</div>
{{< /code >}}
-Hugo renders the markdown to:
+Hugo renders the Markdown to:
```html
<ul>
@@ -96,4 +96,4 @@ Hugo renders the markdown to:
[commonmark]: https://commonmark.org/
[indentation]: https://spec.commonmark.org/0.30/#indented-code-blocks
-[`Inner`]: /methods/shortcode/inner
+[`Inner`]: /methods/shortcode/inner/