diff --git a/content/en/getting-started/configuration-markup.md b/content/en/getting-started/configuration-markup.md index a0791ee6e..c69bbb6ed 100644 --- a/content/en/getting-started/configuration-markup.md +++ b/content/en/getting-started/configuration-markup.md @@ -125,17 +125,31 @@ Text PlainText : The plain variant of the above. -A Markdown example for an inline-style link with title: +#### Link with title Markdown example : ```md [Text](https://www.gohugo.io "Title") ``` -A very simple template example given the above: +Here is a code example for how the render-link.html template could look: {{< code file="layouts/_default/_markup/render-link.html" >}} {{ .Text }} {{< /code >}} +#### Image Markdown example: + +```md + +``` + +Here is a code example for how the render-image.html template could look: + +{{< code file="layouts/_default/_markup/render-image.html" >}} +
+
+