summaryrefslogtreecommitdiffstats
path: root/hugolib/shortcode.go
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2016-03-14 20:31:31 +0100
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2016-03-14 20:35:50 +0100
commit70739c972e910aed9321f1bc0efb97adeb741fd6 (patch)
tree6499f9610b9865dee157cad9131cc3d4edd56481 /hugolib/shortcode.go
parent3a82ae7114b72704a4711844787e4f119939b8e2 (diff)
Remove unnecessary type conversions
Diffstat (limited to 'hugolib/shortcode.go')
-rw-r--r--hugolib/shortcode.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/hugolib/shortcode.go b/hugolib/shortcode.go
index b221ff8a7..3c0afd2e7 100644
--- a/hugolib/shortcode.go
+++ b/hugolib/shortcode.go
@@ -155,7 +155,7 @@ func HandleShortcodes(stringToParse string, page *Page, t tpl.Template) (string,
}
}
- return string(tmpContent), nil
+ return tmpContent, nil
}
var isInnerShortcodeCache = struct {