shithub: hugo

Download patch

ref: 3e316155c5d4fbf166d38e997a41101b6aa501d5
parent: e625088ef5a970388ad50e464e87db56b358dac4
author: Bjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
date: Wed Dec 18 11:37:43 EST 2019

docs: Footnote

--- a/docs/content/en/getting-started/configuration-markup.md
+++ b/docs/content/en/getting-started/configuration-markup.md
@@ -86,7 +86,7 @@
 
 You can do this by creating templates with base names `render-link` and/or `render-image` inside `layouts/_default`.
 
-You can define [Output Format](/templates/output-formats) specific templates if needed.[^1] Your `layouts` folder may then look like this:
+You can define [Output Format](/templates/output-formats) specific templates if needed.[^hooktemplate] Your `layouts` folder may then look like this:
 
 ```bash
 layouts
@@ -101,11 +101,8 @@
 
 * Resolve link references using `.GetPage`. This would make links more portable as you could translate `./my-post.md` (and similar constructs that would work on GitHub) into `/blog/2019/01/01/my-post/` etc.
 * Add `target=blank` to external links.
-* Resolve (look in the page bundle, inside `/assets` etc.) and [transform](/content-management/image-processing) images.
+* Resolve 
 
-
-[^1]: It's currently only possible to have one set of render hook templates, e.g. not per `Type` or `Section`. We may consider that in a future version.
-
 ### Render Hook Templates
 
 Both `render-link` and `render-image` templates will receive this context:
@@ -133,3 +130,8 @@
 {{< code file="layouts/_default/render-link.html" >}}
 <a href="{{ .Destination | safeURL }}"{{ with .Title}}title="{{ . }}"{{ end }}>{{ .Text }}{{ with .Page }} (in page {{ .Title }}){{ end }}"</a>
 {{< /code >}}
+
+(look in the page bundle, inside `/assets` etc.) and [transform](/content-management/image-processing) images.
+
+[^hooktemplate]: It's currently only possible to have one set of render hook templates, e.g. not per `Type` or `Section`. We may consider that in a future version.
+