Page *PageWithoutContent
Parent *ShortcodeWithPage
IsNamedParams bool
- scratch *Scratch
+
+ // Zero-based oridinal in relation to its parent.
+ Ordinal int
+
+ scratch *Scratch
}
// Site returns information about the current site.
name string
inner []interface{} // string or nested shortcode
params interface{} // map or array
+ ordinal int
err error
doMarkup bool
}
return ""
}
- data := &ShortcodeWithPage{Params: sc.params, Page: p, Parent: parent}
+ data := &ShortcodeWithPage{Ordinal: sc.ordinal, Params: sc.params, Page: p, Parent: parent}
if sc.params != nil {
data.IsNamedParams = reflect.TypeOf(sc.params).Kind() == reflect.Map
}
// pageTokens state:
// - before: positioned just before the shortcode start
// - after: shortcode(s) consumed (plural when they are nested)
-func (s *shortcodeHandler) extractShortcode(pt *pageTokens, p *PageWithoutContent) (*shortcode, error) {
- sc := &shortcode{}
+func (s *shortcodeHandler) extractShortcode(ordinal int, pt *pageTokens, p *PageWithoutContent) (*shortcode, error) {
+ sc := &shortcode{ordinal: ordinal}
var isInner = false
var currItem item
var cnt = 0
+ var nestedOrdinal = 0
Loop:
for {
if cnt > 0 {
// nested shortcode; append it to inner content
pt.backup3(currItem, next)
- nested, err := s.extractShortcode(pt, p)
+ nested, err := s.extractShortcode(nestedOrdinal, pt, p)
+ nestedOrdinal++
if nested.name != "" {
s.nameSet[nested.name] = true
}
// … it's safe to keep some "global" state
var currItem item
var currShortcode shortcode
+ var ordinal int
Loop:
for {
// let extractShortcode handle left delim (will do so recursively)
pt.backup()
- currShortcode, err := s.extractShortcode(pt, p)
+ currShortcode, err := s.extractShortcode(ordinal, pt, p)
if currShortcode.name != "" {
s.nameSet[currShortcode.name] = true
placeHolder := s.createShortcodePlaceholder()
result.WriteString(placeHolder)
+ ordinal++
s.shortcodes.Add(placeHolder, currShortcode)
case tEOF:
break Loop
---
# doc
-{{< increment >}}{{< s1 >}}{{< increment >}}{{< s2 >}}{{< increment >}}{{< s3 >}}{{< increment >}}{{< s4 >}}{{< increment >}}{{< s5 >}}
+{{< s1 >}}{{< s2 >}}{{< s3 >}}{{< s4 >}}{{< s5 >}}
+
+{{< nested >}}
+{{< ordinal >}}
+{{< ordinal >}}
+{{< ordinal >}}
+{{< /nested >}}
`
- shortCodeTemplate := `v%d: {{ .Page.Scratch.Get "v" }}|`
+ ordinalShortcodeTemplate := `ordinal: {{ .Ordinal }}`
+
+ nestedShortcode := `outer ordinal: {{ .Ordinal }} inner: {{ .Inner }}`
+
+ shortCodeTemplate := `v%d: {{ .Ordinal }}|`
var shortcodes []string
var content []string
- shortcodes = append(shortcodes, []string{"shortcodes/increment.html", `{{ .Page.Scratch.Add "v" 1}}`}...)
+ shortcodes = append(shortcodes, []string{"shortcodes/nested.html", nestedShortcode}...)
+ shortcodes = append(shortcodes, []string{"shortcodes/ordinal.html", ordinalShortcodeTemplate}...)
for i := 1; i <= 5; i++ {
shortcodes = append(shortcodes, []string{fmt.Sprintf("shortcodes/s%d.html", i), fmt.Sprintf(shortCodeTemplate, i)}...)
p1 := s.RegularPages[0]
- if !strings.Contains(string(p1.content()), `v1: 1|v2: 2|v3: 3|v4: 4|v5: 5`) {
+ if !strings.Contains(string(p1.content()), `v1: 0|v2: 1|v3: 2|v4: 3|v5: 4|`) {
+ t.Fatal(p1.content())
+ }
+
+ // Check nested behaviour
+ if !strings.Contains(string(p1.content()), `outer ordinal: 5 inner:
+ordinal: 0
+ordinal: 1
+ordinal: 2`) {
t.Fatal(p1.content())
}