mirror of
https://github.com/Luzifer/repo-template.git
synced 2024-11-14 10:22:44 +00:00
15 lines
205 B
Go
15 lines
205 B
Go
|
package pongo2
|
||
|
|
||
|
import (
|
||
|
"bytes"
|
||
|
)
|
||
|
|
||
|
type nodeHTML struct {
|
||
|
token *Token
|
||
|
}
|
||
|
|
||
|
func (n *nodeHTML) Execute(ctx *ExecutionContext, buffer *bytes.Buffer) *Error {
|
||
|
buffer.WriteString(n.token.Val)
|
||
|
return nil
|
||
|
}
|