Remove unnecessary type conversions

This commit is contained in:
Bjørn Erik Pedersen 2016-03-14 20:31:31 +01:00
parent 3a82ae7114
commit 70739c972e
6 changed files with 9 additions and 9 deletions

View file

@ -155,7 +155,7 @@ func HandleShortcodes(stringToParse string, page *Page, t tpl.Template) (string,
}
}
return string(tmpContent), nil
return tmpContent, nil
}
var isInnerShortcodeCache = struct {