mirror of
https://github.com/Luzifer/mondash.git
synced 2024-11-10 08:30:02 +00:00
14 lines
205 B
Go
14 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
|
|
}
|