mirror of
https://github.com/kataras/iris.git
synced 2025-12-22 04:17:03 +00:00
Version 3.0.0-beta cleaned
This commit is contained in:
20
render/template/engine/jade/jade.go
Normal file
20
render/template/engine/jade/jade.go
Normal file
@@ -0,0 +1,20 @@
|
||||
package jade
|
||||
|
||||
import (
|
||||
"github.com/Joker/jade"
|
||||
"github.com/kataras/iris/config"
|
||||
"github.com/kataras/iris/render/template/engine/html"
|
||||
)
|
||||
|
||||
type Engine struct {
|
||||
*html.Engine
|
||||
}
|
||||
|
||||
func New(cfg config.Template) *Engine {
|
||||
|
||||
underline := &Engine{Engine: html.New(cfg)}
|
||||
underline.Middleware = func(relativeName string, fileContents string) (string, error) {
|
||||
return jade.Parse(relativeName, fileContents)
|
||||
}
|
||||
return underline
|
||||
}
|
||||
Reference in New Issue
Block a user