ref: 5f8c2818f120b881f58f4cec67aed876edb8bcdf
parent: c5f2f5837fdf6a30c7b28e8368033623b74a30a0
author: Bjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
date: Wed Dec 11 03:08:42 EST 2019
Deprecate Ace and Amber Fixes #6609
--- a/tpl/tplimpl/ace.go
+++ b/tpl/tplimpl/ace.go
@@ -18,10 +18,13 @@
"strings"
+ "github.com/gohugoio/hugo/helpers"
+
"github.com/yosssi/ace"
)
func (t *templateHandler) addAceTemplate(name, basePath, innerPath string, baseContent, innerContent []byte) error {
+ helpers.Deprecated("Ace", "See https://github.com/gohugoio/hugo/issues/6609", false)
t.checkState()
var base, inner *ace.File
withoutExt := name[:len(name)-len(filepath.Ext(innerPath))]
--- a/tpl/tplimpl/amber_compiler.go
+++ b/tpl/tplimpl/amber_compiler.go
@@ -16,11 +16,14 @@
import (
"html/template"
+ "github.com/gohugoio/hugo/helpers"
+
"github.com/eknkc/amber"
"github.com/spf13/afero"
)
func (t *templateHandler) compileAmberWithTemplate(b []byte, path string, templ *template.Template) (*template.Template, error) {
+ helpers.Deprecated("Amber", "See https://github.com/gohugoio/hugo/issues/6609", false)
c := amber.New()
c.Options.VirtualFilesystem = afero.NewHttpFs(t.layoutsFs)