Remove rest of the now unused emoji code

See #11598
This commit is contained in:
Bjørn Erik Pedersen
2023-10-25 11:31:01 +02:00
parent 272484f8bf
commit c4a530f104
4 changed files with 20 additions and 31 deletions

View File

@@ -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)