2016-05-30 16:08:09 +02:00
|
|
|
package jade
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/Joker/jade"
|
|
|
|
"github.com/kataras/iris/config"
|
|
|
|
"github.com/kataras/iris/render/template/engine/html"
|
|
|
|
)
|
|
|
|
|
2016-05-31 10:05:42 +02:00
|
|
|
// Engine the JadeEngine
|
2016-05-30 16:08:09 +02:00
|
|
|
type Engine struct {
|
|
|
|
*html.Engine
|
|
|
|
}
|
|
|
|
|
2016-05-31 10:05:42 +02:00
|
|
|
// new creates and returns a new JadeEngine with its configs
|
2016-05-30 16:08:09 +02:00
|
|
|
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
|
|
|
|
}
|