mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
parent
c5f2f5837f
commit
5f8c2818f1
2 changed files with 6 additions and 0 deletions
|
@ -18,10 +18,13 @@ import (
|
|||
|
||||
"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))]
|
||||
|
|
|
@ -16,11 +16,14 @@ package tplimpl
|
|||
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)
|
||||
|
||||
|
|
Loading…
Reference in a new issue