Shortcode rewrite, take 2
authorbep <bjorn.erik.pedersen@gmail.com>
Mon, 27 Oct 2014 20:48:30 +0000 (21:48 +0100)
committerspf13 <steve.francia@gmail.com>
Mon, 17 Nov 2014 23:32:06 +0000 (18:32 -0500)
commit55fcd2f30f4358a800932aa60160935c0c22f96d
tree8bd9aa1cf0df4fb186d1e0ec07e21fdda4591b89
parentc8904756f02948c6f7bb900b05cd0aa6b259088e
Shortcode rewrite, take 2

This commit contains a restructuring and partial rewrite of the shortcode handling.

Prior to this commit rendering of the page content was mingled with handling of the shortcodes. This led to several oddities.

The new flow is:

1. Shortcodes are extracted from page and replaced with placeholders.
2. Shortcodes are processed and rendered
3. Page is processed
4. The placeholders are replaced with the rendered shortcodes

The handling of summaries is also made simpler by this.

This commit also introduces some other chenges:

1. distinction between shortcodes that need further processing and those who do not:

* `{{< >}}`: Typically raw HTML. Will not be processed.
* `{{% %}}`: Will be processed by the page's markup engine (Markdown or (infuture) Asciidoctor)

The above also involves a new shortcode-parser, with lexical scanning inspired by Rob Pike's talk called "Lexical Scanning in Go",
which should be easier to understand, give better error messages and perform better.

2. If you want to exclude a shortcode from being processed (for documentation etc.), the inner part of the shorcode must be commented out, i.e. `{{%/* movie 47238zzb */%}}`. See the updated shortcode section in the documentation for further examples.

The new parser supports nested shortcodes. This isn't new, but has two related design choices worth mentioning:

* The shortcodes will be rendered individually, so If both `{{< >}}` and `{{% %}}` are used in the nested hierarchy, one will be passed through the page's markdown processor, the other not.
* To avoid potential costly overhead of always looking far ahead for a possible closing tag, this implementation looks at the template itself, and is branded as a container with inner content if it contains a reference to `.Inner`

Fixes #565
Fixes #480
Fixes #461

And probably some others.
docs/content/extras/shortcodes.md
helpers/pygments.go
hugolib/page.go
hugolib/page_test.go
hugolib/shortcode.go
hugolib/shortcode_test.go
hugolib/shortcodeparser.go [new file with mode: 0644]
hugolib/shortcodeparser_test.go [new file with mode: 0644]
hugolib/template.go