github.com/gogf/gf@v1.16.9/.example/os/gview/build_in_funcs/issue359-1.go (about)

     1  package main
     2  
     3  import (
     4  	"fmt"
     5  
     6  	"github.com/gogf/gf/frame/g"
     7  )
     8  
     9  func main() {
    10  	tplContent := `
    11  {{"我是中国人我是中国人我是中国人我是中国人我是中国人我是中国人我是中国人我是中国人我是中国人我是中国人我是中国人我是中国人我是中国人我是中国人我是中国人我是中国人我是中国人我是中国人"| strlimit 10  "..."}}
    12  `
    13  	content, err := g.View().ParseContent(tplContent, nil)
    14  	fmt.Println(err)
    15  	fmt.Println(content)
    16  }