1
0
Fork 0
mirror of https://github.com/Luzifer/promcertcheck.git synced 2024-11-14 02:32:43 +00:00
promcertcheck/vendor/github.com/flosch/pongo2/nodes_html.go

24 lines
387 B
Go
Raw Normal View History

2015-09-04 14:27:44 +00:00
package pongo2
import (
"strings"
)
2015-09-04 14:27:44 +00:00
type nodeHTML struct {
token *Token
trimLeft bool
trimRight bool
2015-09-04 14:27:44 +00:00
}
func (n *nodeHTML) Execute(ctx *ExecutionContext, writer TemplateWriter) *Error {
res := n.token.Val
if n.trimLeft {
res = strings.TrimLeft(res, tokenSpaceChars)
}
if n.trimRight {
res = strings.TrimRight(res, tokenSpaceChars)
}
writer.WriteString(res)
2015-09-04 14:27:44 +00:00
return nil
}