diff options
Diffstat (limited to 'hugolib/shortcode.go')
-rw-r--r-- | hugolib/shortcode.go | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/hugolib/shortcode.go b/hugolib/shortcode.go index 8edfab118..c10896bef 100644 --- a/hugolib/shortcode.go +++ b/hugolib/shortcode.go @@ -16,6 +16,7 @@ package hugolib import ( "bytes" "context" + "errors" "fmt" "html/template" "path" @@ -26,8 +27,6 @@ import ( "strings" "sync" - "errors" - "github.com/gohugoio/hugo/common/herrors" "github.com/gohugoio/hugo/parser/pageparser" @@ -312,8 +311,8 @@ func prepareShortcode( tplVariants tpl.TemplateVariants, sc *shortcode, parent *ShortcodeWithPage, - p *pageState) (shortcodeRenderer, error) { - + p *pageState, +) (shortcodeRenderer, error) { toParseErr := func(err error) error { return p.parseError(fmt.Errorf("failed to render shortcode %q: %w", sc.name, err), p.source.parsed.Input(), sc.pos) } @@ -332,7 +331,6 @@ func prepareShortcode( } return fn, nil - } func doRenderShortcode( @@ -342,7 +340,8 @@ func doRenderShortcode( tplVariants tpl.TemplateVariants, sc *shortcode, parent *ShortcodeWithPage, - p *pageState) (shortcodeRenderer, error) { + p *pageState, +) (shortcodeRenderer, error) { var tmpl tpl.Template // Tracks whether this shortcode or any of its children has template variations @@ -501,7 +500,6 @@ func (s *shortcodeHandler) transferNames(in *shortcodeHandler) { for k := range in.nameSet { s.nameSet[k] = true } - } func (s *shortcodeHandler) hasName(name string) bool { @@ -629,8 +627,6 @@ Loop: return sc, nil case currItem.IsText(): sc.inner = append(sc.inner, currItem.ValStr(source)) - case currItem.Type == pageparser.TypeEmoji: - sc.inner = append(sc.inner, currItem.ValStr(source)) case currItem.IsShortcodeName(): sc.name = currItem.ValStr(source) |