hugolib: Add zero-based Ordinal to shortcode
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Mon, 23 Apr 2018 06:09:56 +0000 (08:09 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Mon, 23 Apr 2018 06:09:56 +0000 (08:09 +0200)
commit3decf4a327157e98d3da3502b6d777de63437c39
tree012aaee3827a32eb13921bdc3e51c7ab82a7e2bf
parent24c662ce6bea029b0b24160376eaceaed1481d1c
hugolib: Add zero-based Ordinal to shortcode

The count starts at 0 relative to the shortcode's parent: Either the page or the surrounding shortcode.

Access it in a shortcode like this:

```bash
Ordinal is {{ .Ordinal }}
```

Note that this is a shared ordinal for all shortcodes in the relevant context, so, as an example, you have this in a content page:

```markdown
This is a shortcode:

{{< hello >}}

This is another shortcode:

{{< hugo >}}

The `.Ordinal` you get in the two shortcodes above is 0 and 1.
```

See #3359
hugolib/shortcode.go
hugolib/shortcode_test.go