hugo

Unnamed repository; edit this file 'description' to name the repository.

git clone git://git.shimmy1996.com/hugo.git
commit 2174525cec567eb43968f52c9f28118a21fafec2
parent 7a6192647a4b383cd539df2063388ea380371de6
Author: Bjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Date:   Sun, 27 May 2018 21:34:05 +0200

hugolib: A little more on shortcode ordinal

Diffstat:
Mhugolib/shortcode.go | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/hugolib/shortcode.go b/hugolib/shortcode.go
@@ -41,7 +41,8 @@ type ShortcodeWithPage struct {
 	Parent        *ShortcodeWithPage
 	IsNamedParams bool
 
-	// Zero-based oridinal in relation to its parent.
+	// Zero-based ordinal in relation to its parent. If the parent is the page itself,
+	// this ordinal will represent the position of this shortcode in the page content.
 	Ordinal int
 
 	scratch *Scratch