</executions>
</plugin>
</code></pre>
+ <h1>Syntax Highlighting by Hugo</h1>
+ <h2>As a code-block...</h2>
+ {{< highlight go "linenos=inline, hl_lines=3 6-8, style=emacs" >}}
+ package main
+
+ import "fmt"
+
+ func main() {
+ for i := 0; i < 3; i++ {
+ fmt.Println("Value of i:", i)
+ }
+ }
+ {{< /highlight >}}
+ <h2>...and inline</h2>
+ <p>This is some {{< highlight go "hl_inline=true" >}}fmt.Println("inline"){{< /highlight >}} code.</p>
</article>