package
0.0.0-20240711173700-6f3c0f60695d
Repository: https://github.com/udehlee/learn-daily.git
Documentation: pkg.go.dev
# README
Overview
In Go, templating utilizes packages such as text/template or html/template to dynamically generate content by merging predefined formats (templates) with actual data.
golang spec
The input text for a template is UTF-8-encoded text in any format. "Actions"--data evaluations or control structures--are delimited by "{{" and "}}"; all text outside actions is copied to the output unchanged.