mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
24 lines
387 B
Go
24 lines
387 B
Go
package pongo2
|
|
|
|
import (
|
|
"strings"
|
|
)
|
|
|
|
type nodeHTML struct {
|
|
token *Token
|
|
trimLeft bool
|
|
trimRight bool
|
|
}
|
|
|
|
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)
|
|
return nil
|
|
}
|