From 5611631539cdff75ce849b85f0f324e831e2e8a5 Mon Sep 17 00:00:00 2001 From: Roy Reveltas Date: Wed, 18 May 2016 08:43:30 +0100 Subject: [PATCH] docs: Add an example of how to use .PrevInSection It's not a common knowledge what the "pointer" is so let's add an example of how to use .PrevInSection --- docs/content/templates/variables.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/templates/variables.md b/docs/content/templates/variables.md index 03398277e..25557c2ec 100644 --- a/docs/content/templates/variables.md +++ b/docs/content/templates/variables.md @@ -44,7 +44,7 @@ matter, content or derived from file location. **.TableOfContents** The rendered table of contents for this content.
**.Prev** Pointer to the previous content (based on pub date).
**.Next** Pointer to the following content (based on pub date).
-**.PrevInSection** Pointer to the previous content within the same section (based on pub date)
+**.PrevInSection** Pointer to the previous content within the same section (based on pub date). For example, `{{if .PrevInSection}}{{.PrevInSection.Permalink}}{{end}}`.
**.NextInSection** Pointer to the following content within the same section (based on pub date)
**.FuzzyWordCount** The approximate number of words in the content.
**.WordCount** The number of words in the content.