* Vendors packages * Adds a Makefile that uses docker to build a static binary against musl using alpine linux. Signed-off-by: Gabriel Adrian Samfira <gsamfira@cloudbasesolutions.com>
23 lines
392 B
Go
23 lines
392 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
|
|
}
|