shithub: hugo

Download patch

ref: bee52f85aee6383b357406baa9ba1e3b725a5a80
parent: be6a92c8b6ff968488d2396d954ed892d0bb18fc
author: bep <[email protected]>
date: Wed Apr 15 22:20:15 EDT 2015

Fix broken Highlight test

--- a/hugolib/shortcode_test.go
+++ b/hugolib/shortcode_test.go
@@ -143,8 +143,7 @@
 	CheckShortCodeMatch(t, `{{% figure src="/found/here" class="bananas orange" alt="apple" width="100px" %}}`, "\n<figure class=\"bananas orange\">\n    \n        <img src=\"/found/here\" alt=\"apple\" width=\"100px\" />\n    \n    \n</figure>\n", tem)
 }
 
-// TODO(bep)
-func _TestHighlight(t *testing.T) {
+func TestHighlight(t *testing.T) {
 	if !helpers.HasPygments() {
 		t.Skip("Skip test as Pygments is not installed")
 	}
--- a/tpl/template_embedded.go
+++ b/tpl/template_embedded.go
@@ -21,13 +21,7 @@
 func (t *GoHTMLTemplate) EmbedShortcodes() {
 	t.AddInternalShortcode("ref.html", `{{ .Get 0 | ref .Page }}`)
 	t.AddInternalShortcode("relref.html", `{{ .Get 0 | relref .Page }}`)
-	t.AddInternalShortcode("highlight.html", `
-	{{ if len .Params | eq 2 }}
-	{{ highlight .Inner (.Get 0) (.Get 1) }}
-	{{ else }}
-	{{ highlight .Inner (.Get 0) "" }}
-	{{ end }}
-	`)
+	t.AddInternalShortcode("highlight.html", `{{ if len .Params | eq 2 }}{{ highlight .Inner (.Get 0) (.Get 1) }}{{ else }}{{ highlight .Inner (.Get 0) "" }}{{ end }}`)
 	t.AddInternalShortcode("test.html", `This is a simple Test`)
 	t.AddInternalShortcode("figure.html", `<!-- image -->
 <figure {{ with .Get "class" }}class="{{.}}"{{ end }}>